下载不同名称的 .jpg 文件

Downloading .jpg files with different names

我想一次下载所有 .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.

实际上我使用 curl 而不是 wget 来解决问题,例如

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