shell – 使用wget以–no-parent递归获取目录

前端之家收集整理的这篇文章主要介绍了shell – 使用wget以–no-parent递归获取目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用以下命令下载目录中的所有文件
wget -r -N --no-parent -nH -P /media/karunakar --ftp-user=jsjd --ftp-password='hdshd' ftp://ftp.xyz.com/Suppliers/my/ORD20130908

但是wget是从父目录中获取文件,即使我指定了–no-parent.我只想要ORD20130908中的文件.

您需要添加一个尾部斜杠,以指示URL中的最后一项是目录而不是文件
wget -r -N --no-parent -nH -P /media/karunakar --ftp-user=jsjd --ftp-password='hdshd' ftp://ftp.xyz.com/Suppliers/my/ORD20130908

wget -r -N --no-parent -nH -P /media/karunakar --ftp-user=jsjd --ftp-password='hdshd' ftp://ftp.xyz.com/Suppliers/my/ORD20130908/

documentation

Note that,for HTTP (and HTTPS),the trailing slash is very important to ‘–no-parent’. HTTP has no concept of a “directory”—Wget relies on you to indicate what’s a directory and what isn’t. In ‘07001’,Wget will consider ‘bar’ to be a directory,while in ‘07002’ (no trailing slash),‘bar’ will be considered a filename (so ‘–no-parent’ would be meaningless,as its parent is ‘/’).

原文链接:https://www.f2er.com/bash/384130.html

猜你在找的Bash相关文章