在 wget 中使用正则表达式进行镜像

发布于 2024-11-06 22:59:02 字数 102 浏览 5 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(3

巾帼英雄 2024-11-13 22:59:03

您可以应用 {} 来应用数字范围。使用此示例“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}"

要走干脆点 2024-11-13 22:59:02
for i in $(seq 1 98);do echo "http://example.com/folder${i}/";done|wget -mki -
for i in $(seq 1 98);do echo "http://example.com/folder${i}/";done|wget -mki -
夜清冷一曲。 2024-11-13 22:59:02

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.

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