wget 特定目录并下载完整路径

wget 特定目录并下载完整路径

我尝试data使用此命令下载。

wget -r --no-parent http://myserver/username/data/

这使我的服务器上剩下三个文件夹,分别是:myserver/username/data/

如何仅下载data而不包含文件夹的完整路径?

答案1

手册说你可以使用 cut-dirs 和 no-host-directories 选项,例如

wget -r --no-parent -nH --cut-dirs=1 http://myserver/username/data/ 

您甚至可以使用--no-directories或-nd。

相关内容