Skip to content

Instantly share code, notes, and snippets.

@mrsum
Created June 28, 2017 15:12
Show Gist options
  • Save mrsum/c1d868723f3a27675835faa62db9988d to your computer and use it in GitHub Desktop.
Save mrsum/c1d868723f3a27675835faa62db9988d to your computer and use it in GitHub Desktop.
google-images.sh
#!/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