1

wget ( -roption) 的递归选项偶尔会产生很多文件。例如,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’

......

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

4

1 回答 1

1

要在特定时间后停止命令,您可以使用 command timeout

timeout 60 wget ...

将在 60 秒后停止下载。

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

  • 's' 秒(默认)
  • 'm' 分钟
  • 'h' 几个小时
  • 'd' 几天
于 2015-10-16T14:21:25.880 回答