Skip to content

Instantly share code, notes, and snippets.

@veeara282
Created September 24, 2015 06:26
Show Gist options
  • Save veeara282/f55764c410853af64035 to your computer and use it in GitHub Desktop.
Save veeara282/f55764c410853af64035 to your computer and use it in GitHub Desktop.
The bash script I used to bulk download my yearbook photos.
#!/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