wget 用于离线阅读的特定 URL
我正在尝试下载特定网址,例如 http://website.com/index.html
或 http://website.com/example.html
这是为了离线阅读,我希望 Wget 抓取所有相关的图像、JavaScript 和 CSS 文件。
使用 wget -k -m http://website.com/index.html
将下载整个网站,而不是仅 http://website.com/index.html
。
I'm trying to download a specific URL, such as http://website.com/index.html
, or http://website.com/example.html
This is for offline reading, where I want Wget to grab all related images, JavaScript, and CSS files.
Using wget -k -m http://website.com/index.html
will download the entire site instead of only http://website.com/index.html
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用
--page-requirements
(或-p
)选项;请参阅手册页gnu.org。You want to use the
--page-requisites
(or-p
) option; see the man page on gnu.org.