Skip to content

Instantly share code, notes, and snippets.

@bhargavg
Last active August 29, 2015 14: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 bhargavg/9d5bfe1e30fe6efa875d to your computer and use it in GitHub Desktop.
Save bhargavg/9d5bfe1e30fe6efa875d to your computer and use it in GitHub Desktop.
One liners to download all WWDC 2014 videos
# MAC (wont be able to resume a file if download is stopped in the middle)
curl --silent https://developer.apple.com/videos/wwdc/2014/ | egrep -o 'http://devstreaming.apple.com/videos/wwdc/2014/[^/]*/([0-9]+)/\1_hd_[^.]*.mov' | xargs -n1 curl -O
# Linux (wget supports resuming, freaking awesome)
wget --continue -i $(curl --silent https://developer.apple.com/videos/wwdc/2014/ | egrep -o 'http://devstreaming.apple.com/videos/wwdc/2014/[^/]*/([0-9]+)/\1_hd_[^.]*.mov')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment