wget 不适用于递归模式

wget 不适用于递归模式

GNU Wget 1.16 built on linux-gnueabihfRaspberry Pi 3

如何强制 wget 获取整个站点(跟随链接,像机器人一样工作),而不仅仅是第一个索引?

我试过:

wget -r http://aol.com
wget -r -l0 http://aol.com
wget -r -m -l0 http://aol.com

每个命令都以相同的方式结束:

--2017-11-29 08:05:42--  http://aol.com/
Resolving aol.com (aol.com)... 149.174.149.73, 64.12.249.135, 149.174.110.105, ...
Connecting to aol.com (aol.com)|149.174.149.73|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://www.aol.com/ [following]
--2017-11-29 08:05:42--  https://www.aol.com/
Resolving www.aol.com (www.aol.com)... 34.233.220.13, 34.235.7.32, 52.6.64.98, ...
Connecting to www.aol.com (www.aol.com)|34.233.220.13|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Last-modified header missing -- time-stamps turned off.
--2017-11-29 08:05:44--  https://www.aol.com/
Reusing existing connection to www.aol.com:443.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘aol.com/index.html’

aol.com/index.html                                              [  <=>                                                                                                                                      ] 359.95K   751KB/s   in 0.5s

2017-11-29 08:05:45 (751 KB/s) - ‘aol.com/index.html’ saved [368585]

FINISHED --2017-11-29 08:05:45--
Total wall clock time: 2.8s
Downloaded: 1 files, 360K in 0.5s (751 KB/s)

我究竟做错了什么?

答案1

出现您的问题是因为所有链接都aol.com/index.html指向不同的主机。要从所有主机递归下载,您可以添加该选项--span-hosts。为了允许所有 aol 主机,添加该选项似乎对我有用--span-hosts '*.aol.com'

wget --span-hosts '*.aol.com' -r http://www.aol.com

您可以列出链接

grep -Po '(?<=href=")[^"]*' aol.com/index.html

您会看到其中大多数都指向 www.aol.com,因此您也可以致电

wget -r http://www.aol.com

答案2

使用以下命令将允许wget递归下载链接到网站的所有页面。

wget -r $(curl http://aol.com | grep -Po '(?<=href=")[^"]*')

将示例网站替换为您想要的网站。这会像Deapth for search in a graph

工作方法 curl将获取index.html.它将通过管道输入grep以通过匹配查找所有链接href。输入结果将wget作为变量给出。wget从变量中一一获取链接。

相关内容