본문 바로가기
MAC

Downloading Files in Mac OS: The 'curl' Alternative to 'wget' / 맥에서 wget 대신 curl!

by 재르미온느 2024. 5. 27.

Stuck in class without wget? No problem!

In my basic algorithms class, I needed to download a text file for an assignment, but I hadn't installed wget. Luckily, there's a way to download files by URL without any extra software. Here's how to do it!

 

맥에서 wget이 정상 작동 하지 않아 당황하였는가? wget대신 curl을 활용하여 해결할 수 있다.

curl

You can use this in your Mac terminal as follows:

curl -O [URL] -o myfile.txt

 

 

If you have any further questions, type the following into the terminal and refer to the manual for more information:

curl -h

 

 

Continue exploring and expanding your coding skills!