Skip to content

Instantly share code, notes, and snippets.

@PaulCapestany
Created June 6, 2014 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulCapestany/a7c913115aef9bedf0b6 to your computer and use it in GitHub Desktop.
Save PaulCapestany/a7c913115aef9bedf0b6 to your computer and use it in GitHub Desktop.
Download every session slide deck PDF from WWDC 2014 with this quick one-liner shell script
for i in `curl https://developer.apple.com/videos/wwdc/2014/ | grep -o 'ht.*pdf'`; do; curl -O $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment