Skip to content

Instantly share code, notes, and snippets.

@PaulCapestany
Created June 6, 2014 21:12
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/a54e02135bd366de3579 to your computer and use it in GitHub Desktop.
Save PaulCapestany/a54e02135bd366de3579 to your computer and use it in GitHub Desktop.
Download every video presentation (standard 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' | sed 's;_hd;_sd;'`; do; curl -O $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment