Cara Download Multiple Url Dengan Curl dan Bash Unix / Linux

gak usah panjang lebar jelasinnya soal Cara Download Multiple url Dengan Curl dan Bash Unix / Linux ini langsung saja praktek.

bikin file kayak gini di text editor kesayangan lalu simpan dengan ektensi .sh contoh test.sh

curl "http://www.blogger.com/atom.xml?redirect=false&start-index=1&max-results=500" >> temp1.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=501&max-results=500" >> temp2.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=1001&max-results=500" >> temp3.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=1501&max-results=500" >> temp4.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=2001&max-results=500" >> temp5.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=2501&max-results=500" >> temp6.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=3001&max-results=500" >> temp7.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=3501&max-results=500" >> temp8.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=4001&max-results=500" >> temp9.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=4501&max-results=500" >> temp10.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=5001&max-results=500" >> temp11.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=5501&max-results=500" >> temp12.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=6001&max-results=500" >> temp13.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=6501&max-results=500" >> temp14.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=7001&max-results=500" >> temp15.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=7501&max-results=500" >> temp16.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=8001&max-results=500" >> temp17.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=8501&max-results=500" >> temp18.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=9001&max-results=500" >> temp19.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=9501&max-results=500" >> temp20.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=10001&max-results=500" >> temp21.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=10501&max-results=500" >> temp22.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=11001&max-results=500" >> temp23.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=11501&max-results=500" >> temp24.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=12001&max-results=500" >> temp25.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=12501&max-results=500" >> temp26.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=13001&max-results=500" >> temp27.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=13501&max-results=500" >> temp28.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=14001&max-results=500" >> temp29.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=14501&max-results=500" >> temp30.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=15001&max-results=500" >> temp31.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=15501&max-results=500" >> temp32.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=16001&max-results=500" >> temp33.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=16501&max-results=500" >> temp34.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=17001&max-results=500" >> temp35.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=17501&max-results=500" >> temp36.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=18001&max-results=500" >> temp37.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=18501&max-results=500" >> temp38.xml
curl "http://www.blogger.com/atom.xml?redirect=false&start-index=19001&max-results=500" >> temp39.xml

lalu jalankan dengan perintah sh test.sh / bash test.sh di terminal linux atau unix kalian.