2018-08-09 wget 实战经典3

  1. wget -c 断点续传
  2. 限制下载的的速度:wget --limit-rate=100k
  3. 测试是否能正常访问:wget --spider http://www.baidu.com

如果下载链接正确,将会显示:

Spider mode enabled. Check if remote file exists.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Remote file exists and could contain further links,
but recursion is disabled -- not retrieving.

这保证了下载能在预定的时间进行,但当你给错了一个链接,将会显示如下错误:

wget --spider url
Spider mode enabled. Check if remote file exists.
HTTP request sent, awaiting response... 404 Not Found
Remote file does not exist -- broken link!!!

你可以在以下几种情况下使用--spider参数:

  • 定时下载之前进行检查
  • 间隔检测网站是否可用
  • 检查网站页面的死链接
  1. 设置下载重试的次数:wget --tries=3 http://www.baidu.com

-c, –continue 接着下载没下载完的文件
–limit-rate=RATE 限定下载输率
–spider 不下载任何东西
-t, –tries=NUMBER 设定最大尝试链接次数(0 表示无限制).

你可能感兴趣的:(2018-08-09 wget 实战经典3)