Skip to content

Instantly share code, notes, and snippets.

@yusuke024
Last active December 21, 2015 16:59
Show Gist options
  • Save yusuke024/6337384 to your computer and use it in GitHub Desktop.
Save yusuke024/6337384 to your computer and use it in GitHub Desktop.
Curl
# Download a file
curl -O http://example.com/file.txt
# Download a file and follow any redirection that may occurs
curl -LO http://example.com/file.txt
# Download a file to different name
curl -o myfile.txt http://example.com/file.txt
# or
curl http://example.com/file.txt > myfile.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment