我可以使用 wget 从 Linux 终端下载多个文件吗
假设我有一个可通过 http e,g
Http://www.abc.com/pdf/books
访问的目录在文件夹内我有很多 pdf 文件
我可以使用类似
Suppose i have a directory accessible via http e,g
Http://www.abc.com/pdf/books
Inside the folder i have many pdf files
Can i use something like
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 wget 手册页:
和
from wget man page:
and
这取决于网络服务器和服务器的配置。严格来说,URL 不是目录路径,因此
http://something/books/*
没有意义。但是,如果 Web 服务器将
http://something/books
路径实现为列出网站上所有书籍的索引页,那么您可以使用 递归选项 和蜘蛛选项,wget 将很乐意跟踪http 中的任何链接://something/books
索引 页。It depends on the webserver and the configuration of the server. Strictly speaking the URL is not a directory path, so the
http://something/books/*
is meaningless.However if the web server implements the path of
http://something/books
to be a index page listing all the books on the site, then you can play around with the recursive option and spider options and wget will be happy to follow any links which is in thehttp://something/books
index page.