我使用cURL將文件下載到本地文件夾。我使用看起來像這樣的命令:如何讓一部分URL在cURL中同時增加?
curl -O http://example.com/example/file[001-030]_file_[1-30]_eng.ext
我想要的號碼在同一時間(「file001_file_1_eng.ext」)增加,使他們匹配。相反,它像嵌套循環一樣工作,並且命令將一堆空文件與現有文件一起寫入文件夾。所以,我得到:
file001_file_1_eng.ext
file001_file_2_eng.ext <--- file doesn't exist
file001_file_3_eng.ext <--- file doesn't exist
等等
所以,我不知道如何讓他們以正確的方式遞增。
我希望得到這樣的輸出:
example.com/example/file008_file_1_eng.text
example.com/example/file009_file_2_eng.text
example.com/example/file010_file_3_eng.text
example.com/example/file011_file_4_eng.text
example.com/example/file012_file_5_eng.text
example.com/example/file013_file_6_eng.text
example.com/example/file014_file_7_eng.text
example.com/example/file015_file_8_eng.text
example.com/example/file016_file_9_eng.text ... and so on.
如何在循環中創建數字? – 2012-02-15 07:44:31