Last active
August 29, 2015 14:02
-
-
Save wjlafrance/840473da3b4eb0b9a9a3 to your computer and use it in GitHub Desktop.
WWDC Video List Utils
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
# List all sessions available for download | |
curl https://developer.apple.com/videos/wwdc/2014/ | grep '>Session\ ' | sed 's/<li class="thumbnail-title">//' | sed 's/<\/li><li\ class="thumbnail-id">Session//' | sed 's/<.*$//' | awk '{id=$NF; $NF=""; print id, $0}' | |
# List all files available for download (includes SD, HD, and PDF) | |
curl https://developer.apple.com/videos/wwdc/2014/ | sed 's/ | /\'$'\n/' | grep devstreaming | sed 's/[[:space:]]*<a href="//' | sed 's/?dl=1.*$//' | awk 'BEGIN{FS="/"} { print $8 ": " $0 }' | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment