Skip to content

Instantly share code, notes, and snippets.

@chrismiles
Created June 5, 2014 00:50
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 chrismiles/31feecc1309b9fe4625a to your computer and use it in GitHub Desktop.
Save chrismiles/31feecc1309b9fe4625a to your computer and use it in GitHub Desktop.
echo "HD Video Download"
curl https://developer.apple.com/videos/wwdc/2014/ | grep -iIoh 'http.*._hd_.*dl=1">HD' | sed -e 's/\?dl=1">HD//g' | xargs -n1 wget -N
echo "PDFs Download"
curl https://developer.apple.com/videos/wwdc/2014/ | grep -iIoh 'http.*.pdf' | sed -e 's/\?dl=1">PDF//g' | xargs -n1 wget -N
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment