Created
April 4, 2016 15:03
-
-
Save keima/361aa47b1f1fd565c5bfae496e3a883f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| CNT=1 | |
| for url in `cat images.txt` | |
| do | |
| curl -o `printf %03d $CNT`.jpg $url | |
| CNT=$(( CNT + 1 )) | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment