Skip to content

Instantly share code, notes, and snippets.

@PaulCapestany
Created June 15, 2013 00:13
Show Gist options
  • Save PaulCapestany/5786210 to your computer and use it in GitHub Desktop.
Save PaulCapestany/5786210 to your computer and use it in GitHub Desktop.
Download all the WWDC session presentation PDFs with this one-line bash script. Simply "View Source" at https://developer.apple.com/wwdc/videos/ and Save as "wwdc_source", then run the script in terminal. Easy-peazy!
grep -o "devstreaming.*HD.mov" wwdc_source | sed 's/-HD.mov/.pdf/' > wwdc_PDF_urls && for URL in `cat wwdc_PDF_urls`; do curl -OL $URL; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment