wget command to download a file and save as a different filename

前端 未结 5 1291
南方客
南方客 2020-11-30 16:29

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.

For example: I

5条回答
  •  Happy的楠姐
    2020-11-30 17:01

    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.

提交回复
热议问题