wget命令下载文件并另存为不同的文件名

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

我正在使用wget命令下载文件。 但是当它下载到我的本地机器时,我希望它保存为不同的文件名。

例如:我正在从www.examplesite.com/textfile.txt下载文件

我想使用wget将文件textfile.txt保存在我的本地目录中newfile.txt。 我使用wget命令如下:

1
wget www.examplesite.com/textfile.txt


使用-O file选项。

例如。

1
2
3
wget google.com
...
16:07:52 (538.47 MB/s) - `index.html' saved [10728]

1
2
3
wget -O foo.html google.com
...
16:08:00 (1.57 MB/s) - `foo.html' saved [10728]


还要注意命令行上的参数顺序。 至少在某些系统上(例如CentOS6):

1
wget -O FILE URL

作品。 但:

1
wget URL -O FILE

不起作用。


您将使用列出的Mechanical蜗牛命令。 注意要使用的大写O. Full命令行可以是:

1
wget www.examplesite.com/textfile.txt --output-document=newfile.txt

要么

1
wget www.examplesite.com/textfile.txt -O newfile.txt

希望有所帮助。


使用CentOS Linux我发现最简单的语法是:

1
wget"link" -O file.ext

其中"link"是您要保存的网址,"file.ext"是您选择的文件名和扩展名。


1
wget -O yourfilename.zip remote-storage.url/theirfilename.zip

会为你做的伎俩。

注意:

a)它的资本O.

b)wget -O filename url只能起作用。 最后放-O不会。