标签: bash wget
我正在尝试没有任何选择 wget www.example.com 它仍然下载比主html文件更多的文件。有没有办法避免下载它们?
答案 0 :(得分:2)
Wget永远不会包含css,js,图片或flash内容。它只会下载html(如果你将一个url传递给一个html文件):
wget http://www.myserver.de/index.html
这会将index.html保存在当前文件夹中(仅此而已)