Wget - 输出目录前缀
目前我尝试使用:
"wget --user=xxx --password=xxx -r ftp://www.domain.com/htdocs/"
但这会以这种方式将输出文件保存到当前目录:
curdir/www.domain.com/htdocs/*
我需要它是:
curdir/*
有没有办法做到这一点,我只看到一种使用输出前缀的方法,但我认为这将允许我在当前目录之外定义目录?
Currently I try to use:
"wget --user=xxx --password=xxx -r ftp://www.domain.com/htdocs/"
But this saves output files to current directory in this fashion:
curdir/www.domain.com/htdocs/*
I need it to be:
curdir/*
Is there a way to do this, I only see a way to use output prefix, but i think this will just allow me to define directory outside current dir?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望一个目录中的所有文件或
--no-host-directories
具有子目录,但每个主机没有子目录,则可以将--no-directories
与您的 <代码>--目录前缀选项。You can combine
--no-directories
if you want all your files inside one directory or--no-host-directories
to have subdirectories but no subdirectories per host with your--directory-prefix
option.