I am downloading a file using the wget command. But when it downloads to my local machine, I want it to be saved as a different filename.
wget
For example: I
Also notice the order of parameters on the command line. At least on some systems (e.g. CentOS 6):
wget -O FILE URL
works. But:
wget URL -O FILE
does not work.