wget】 命令行下载工具【linux】


下载单个文件

wget http:path.to.the/file

下载文件并改名

wget http:path.to.the/file -O newname

下载文件到目录

wget -P path/to/directory http:path.to.the/file

继续一个已中止的下载

wget -c http:path.to.the/file

用多个URL下载多个文件

wget URL1 URL2

解析一个包含URL列表的文件,以获取每一个URL

wget -i url_list.txt

在本地镜像整个页面

wget -pk http:path.to.the/page.html

在本地镜像整个网站

wget -mk http:site.tl/

根据模式下载文件

wget http:www.myserver.com/files-{1..15}.tar.bz2

如果目录索引被启用,下载一个目录中具有特定扩展名的所有文件

wget -r -l1 -A.extension http:myserver.com/directory

允许你只下载响应的标题(-S --spider),并在Stdout上显示(-O -)

wget -S --spider -O - http:google.com

将User-Agent改为'User-Agent: toto'

wget -U 'toto' http:google.com

wget】 Wget is a command-line utility for downloading files from the web【linux】


To download a single file

wget http:path.to.the/file

To download a file and change its name

wget http:path.to.the/file -O newname

To download a file into a directory

wget -P path/to/directory http:path.to.the/file

To continue an aborted downloaded

wget -c http:path.to.the/file

To download multiples files with multiple URLs

wget URL1 URL2

To parse a file that contains a list of URLs to fetch each one

wget -i url_list.txt

To mirror a whole page locally

wget -pk http:path.to.the/page.html

To mirror a whole site locally

wget -mk http:site.tl/

To download files according to a pattern

wget http:www.myserver.com/files-{1..15}.tar.bz2

To download all the files in a directory with a specific extension if directory indexing is enabled

wget -r -l1 -A.extension http:myserver.com/directory

Allows you to download just the headers of responses (-S --spider) and display them on Stdout (-O -).

wget -S --spider -O - http:google.com

Change the User-Agent to 'User-Agent: toto'

wget -U 'toto' http:google.com


腾图小抄 SCWY.net v0.03 小抄561条 自2022-01-02访问369200次