Skip to content

Instantly share code, notes, and snippets.

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