Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save moaj257/719f4acca3ce52d1fa7d4cc5bf137ee8 to your computer and use it in GitHub Desktop.
Save moaj257/719f4acca3ce52d1fa7d4cc5bf137ee8 to your computer and use it in GitHub Desktop.
Fastest way to download a file in terminal. Download a file from the internet using terminal via curl.

You must have cURL installed on your system to get this command working.

curl -L ${URL} -o ${FILE_PATH_WITH_FILE_NAME}
  • Example
curl -L https://picsum.photos/1366/866 -o ./img.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment