Skip to content

Instantly share code, notes, and snippets.

@georgehrke
Last active August 29, 2015 14:12
Show Gist options
  • Save georgehrke/14b61757d737296a942a to your computer and use it in GitHub Desktop.
Save georgehrke/14b61757d737296a942a to your computer and use it in GitHub Desktop.
Snippet to download all 31c3 videos. This does not download the torrent but rather the video itself.
for x in `lynx http://cdn.media.ccc.de/congress/31C3/h264-hd/ --dump | grep "http" | grep "31c3" | cut -c 7-`; do
wget -nc $x;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment