如何在 Windows 上使用 wget 仅下载网页文件名?

如何在 Windows 上使用 wget 仅下载网页文件名?

我目前正在使用这个命令:

wget -m https://example.org --limit-rate=25m --convert-links --timestamps --wait=0.5 --execute="robots = off"

而且它运行得非常好。但是,我希望相当于通过 wget 正常下载文件,然后将所有文件清空。这可能吗?例如,假设包含example.orgpage.htmlindex.htmlpage2.html希望我的文件夹包含:

index.html
page.html
page2.html

这些文件必须是空白的。可以使用 wget 来实现吗,或者有其他命令行工具可以做到这一点?我正在寻找与 Ubuntu 或 Windows 兼容的工具。最好两者都兼容。

答案1

“文件名”实际上并不是网页的概念,或者至少从用户的角度来看不是这样。托管您的 example.org/page.html 的服务器上可能有也可能没有静态文件,并且它可能名为 page.html,也可能不是。

相关内容