Download 下载具有不同名称的.jpg文件

Download 下载具有不同名称的.jpg文件,download,wget,Download,Wget,我想立即下载所有.jpg文件,但当我下载例如 wget --no-check-certificate https://das.familysearch.org/das/v2/dgs:005600565_000{11..32}/dist.jpg 我得到 我想下载的是 dist.jpg as 11.jpg dist.jpg.1 as 12.jpg ... 我试过用-O,明白吗 但这不是工作。 我的系统是Mac OS X。实际上,我用curl而不是wget来解决这个问题 curl -o "#1.j

我想立即下载所有.jpg文件,但当我下载例如

wget --no-check-certificate https://das.familysearch.org/das/v2/dgs:005600565_000{11..32}/dist.jpg
我得到

我想下载的是

dist.jpg as 11.jpg
dist.jpg.1 as 12.jpg
...
我试过用-O,明白吗 但这不是工作。
我的系统是Mac OS X。

实际上,我用
curl
而不是
wget
来解决这个问题

curl -o "#1.jpg" https://das.familysearch.org/das/v2/dgs:005600565_000[11-32]/dist.jpg

我也想知道答案!
curl -o "#1.jpg" https://das.familysearch.org/das/v2/dgs:005600565_000[11-32]/dist.jpg