Created
September 24, 2015 06:26
-
-
Save veeara282/f55764c410853af64035 to your computer and use it in GitHub Desktop.
The bash script I used to bulk download my yearbook photos.
This file contains 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 | |
for i in `seq 1 15`; | |
do | |
wget "https://s3.amazonaws.com/iq-cache/A9X6594/gallery/1000349181/1200/05003423($i).jpg" -O $i.jpg | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment