在 wget 中使用正则表达式进行镜像
我正在使用 wget 并尝试镜像网站上的所有 98 个文件夹。执行“wget -mk http://example.com/folder[1-98]/”的语法是什么?
谢谢。
I'm using wget and trying to mirror all 98 folders on a website. What would be the syntax to do "wget -mk http://example.com/folder[1-98]/"?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以应用 {} 来应用数字范围。使用此示例“wget -mk http://example.com/folder{1..98}”
You can apply {} to apply range of numbers. Use this example "wget -mk http://example.com/folder{1..98}"
wget
不支持以您所描述的格式指定 URL 范围。您最好使用 bash 或其他编程语言将链接范围构建到文本文件中,然后使用 wget 读取该文本文件。wget
does not support specifying URL ranges in the format you've described. You would be better served building out the range of links with bash or some other programming language into a text file and then reading that text file with wget.