带有通配符的 wget [*.cpp]
如何在 wget 中使用通配符? 例如 wget http://abc.com/programs/*.cpp
谢谢
How to use wild characters in wget ?
e.g. wget http://abc.com/programs/*.cpp
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
基于 http://www.linuxquestions.org/questions/linux-networking-3/use-wget-to-download-multiple-files-with-wildcards-603486/。根据服务器上设置的权限,它可能会也可能不会起作用。
Try
based on http://www.linuxquestions.org/questions/linux-networking-3/use-wget-to-download-multiple-files-with-wildcards-603486/. Depending on the permissions set on the server, it may or may not work.
对于 http 来说不能这样做,因为 http 不允许以任何形式进行通配或列出。它仅适用于 ftp 地址(据我所知)。
不过,如果您需要这样做,则取决于具体情况。您也许可以告诉 wget 抓取链接(例如目录列表上的链接),但它会比这更复杂一些。
This can not be done for http because http does not allow globbing or listing in any form. It will only work for ftp addresses (afaik.)
If you need to do this, though, it depends on the situation. You may be able to tell wget to crawl links (such as on a directory listing) but it would be a bit more complex than that.