gpt4 book ai didi

linux - 在 Linux 上使用 wget 扫描特定文件的子文件夹

转载 作者:太空宇宙 更新时间:2023-11-04 10:46:30 25 4
gpt4 key购买 nike

使用 wget -r -P Home -A jpg http://example.com 会得到该网站目录中的文件列表,我要搜索的是如何查询搜索如下:wget -r -P home -A jpg http://example.com/from 65121 to 75121/file_ 100 to 200.jpg

示例:

wget -r -P home -A jpg http://example.com/65122/file_102.jpg
wget -r -P home -A jpg http://example.com/65123/file_103.jpg
wget -r -P home -A jpg http://example.com/65124/file_104.jpg

是否可以在 Linux 发行版上实现?
我是 Linux 操作系统的新手,欢迎任何提示。

最佳答案

使用嵌套的 for 循环和一些 bash 脚本:

for i in {65121..75121}; do for j in {100..200}; do wget -r -P home -A jpg "http://example.com/${i}/file_${j}.jpg"; done; done

关于linux - 在 Linux 上使用 wget 扫描特定文件的子文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32876412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com