0

我想将单个 URL 保存到可浏览的 html 中。例如。我想保存 digg.com 或 yahoo.com 的第一页,但到目前为止,wget 会遍历所有链接并保存比必要更多的页面。

我希望 wget 只保存 digg 的主页,没有任何外部链接,就像谷歌的缓存一样:http://webcache.googleusercontent.com/search?q=cache%3Adigg.com&oq=cache%3Adigg.com&aqs=chrome..69i57j69i58。 4306j0j1&sourceid=chrome&ie=UTF-8

4

1 回答 1

1
wget --adjust-extension --span-hosts --convert-links --backup-converted --page-requisites [url]

from: https://superuser.com/questions/55040/save-a-single-web-page-with-background-images-with-wget

to specifiy the link level depth use --level=depth

于 2013-11-12T15:31:13.633 回答