递归wget控件下载

时间:2013-05-05 14:54:23

标签: download wget

wget(-r选项)的递归选项偶尔会产生许多文件。例如,wget -r www.cnn.com给出以下内容:

--2013-05-05 10:35:54--  http://www.cnn.com/about/
Reusing existing connection to www.cnn.com:80.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘www.cnn.com/about/index.html’

--2013-05-05 10:35:54--  http://www.cnn.com/help/
Reusing existing connection to www.cnn.com:80.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘www.cnn.com/help/index.html’

......

如何控制 - 我们可以指定下载的最大总大小,最大下载时间等吗?

1 个答案:

答案 0 :(得分:1)

要在一段时间后停止命令,您可以使用命令timeout

timeout 60 wget ...

将在60秒后停止下载。

您可以在持续时间后添加可选单位:

  • 's'秒(默认)
  • 'm'分钟
  • 'h'几个小时
  • 'd'连续几天
相关问题