带有通配符的 wget [*.cpp]

发布于 2024-11-05 17:22:46 字数 128 浏览 4 评论 0原文

如何在 wget 中使用通配符? 例如 wget http://abc.com/programs/*.cpp

谢谢

How to use wild characters in wget ?
e.g. wget http://abc.com/programs/*.cpp

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

毁我热情 2024-11-12 17:22:46

尝试

wget -r -l1 --no-parent -A.cpp http://abc.com/programs/

基于 http://www.linuxquestions.org/questions/linux-networking-3/use-wget-to-download-multiple-files-with-wildcards-603486/。根据服务器上设置的权限,它可能会也可能不会起作用。

Try

wget -r -l1 --no-parent -A.cpp http://abc.com/programs/

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.

吃不饱 2024-11-12 17:22:46

对于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文