Skip to content

Instantly share code, notes, and snippets.

@gonzaloserrano
Created March 1, 2013 11:08
Show Gist options
  • Save gonzaloserrano/5063959 to your computer and use it in GitHub Desktop.
Save gonzaloserrano/5063959 to your computer and use it in GitHub Desktop.
Download all numbers of the f11 photography magazine http://www.f11magazine.com/site/all.html
for i in `curl http://www.f11magazine.com/site/all.html | grep "site\/pdf" | awk -F '"' '{print $2}'`; do echo $i; wget "$i"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment