1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| wget -S --spider url ## 不下载只显示过程
# wget url wget -O filename.mp4 url
# wget --limit-rate=300K url
# wget -b url tail -f wget-log ## 查看进度
# wget --user-agent="Mozilla/5.0 (Windows;U;Windows NT ) ..." URL
# wget --tries=40 URL
# cat > filelist.txt URL1 URL2 URL3
wget -i filelist.txt
# wget --mirror -p --convert-links -P ./LOCAL URL --mirror 镜像下载 -p 下载所有为了HTML页面正常显示的文件 --convert-links 转换成本地的链接 -P ./LOCAL保存在本地指定目录
# wget --reject=gif url
# wget -o download.log url
# wget -Q5m -i filelist.txt 限制5M
# wget -r -A.pdf url
|