我想立即下载所有.jpg文件,但是当我下载时,例如
wget --no-check-certificate https://das.familysearch.org/das/v2/dgs:005600565_000{11..32}/dist.jpg
我得到了
dist.jpg
dist.jpg.1
dist.jpg.2
dist.jpg.3
dist.jpg.4
dist.jpg.5
我想要的是下载
dist.jpg as 11.jpg
dist.jpg.1 as 12.jpg
...
我尝试过-O,请参阅https://serverfault.com/questions/258625/using-wget-to-save-sequential-files-as-well-as-renaming-the-file-extension 但不是在打瞌睡。 我的系统是Mac OS X.
答案 0 :(得分:1)
实际上我使用curl
代替wget
来解决问题,例如
curl -o "#1.jpg" https://das.familysearch.org/das/v2/dgs:005600565_000[11-32]/dist.jpg