downloading a file from command line

Code:
curl -0 (pathtofile) > (outputfilename)
...where (pathtofile) is the path to the file you want to download including the URL, and (outputfilename) is the name of the file you want to save the file to.
 
Back
Top