Created
June 28, 2017 15:12
-
-
Save mrsum/c1d868723f3a27675835faa62db9988d to your computer and use it in GitHub Desktop.
google-images.sh
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/bash | |
COUNTER=1000 | |
while [ $COUNTER -lt 2000 ]; do | |
wget "https://earthview.withgoogle.com/download/$COUNTER.jpg" | |
let COUNTER=COUNTER+1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment