Skip to content

Instantly share code, notes, and snippets.

@pbendersky
Last active August 29, 2015 14:02
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 pbendersky/584afcf208d7b44b97f7 to your computer and use it in GitHub Desktop.
Save pbendersky/584afcf208d7b44b97f7 to your computer and use it in GitHub Desktop.

Usage

  1. Place wwdc2014VideoDownload.sh on the same folder you want the videos downloaded.
  2. Connect to ethernet in Moscone (WiFi will not work)
  3. cd to this folder and run the script: ./wwdc2014VideoDownload.sh

Notes

  • You will need wget installed.
#!/bin/bash
curl -L http://developer.apple.com/videos/wwdc/2014 | grep -iIoh 'http.*._hd_.*dl=1">HD' | sed -e 's/\?dl=1">HD//g' > files
wget -i files -nc
rm files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment