Last active
August 29, 2015 14:02
-
-
Save marknorgren/2a4dc3454936a5958c93 to your computer and use it in GitHub Desktop.
Download HD video and PDFs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PDFs | |
curl https://developer.apple.com/videos/wwdc/2014/ | grep -iIoh 'http.*.pdf.*dl=1">PDF' | sed -e 's/\?dl=1">PDF//g' | xargs -n1 wget -N | |
# HD Videos | |
# via: https://twitter.com/merowing_/status/474071685826883584 | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment