Last active
August 29, 2015 14:12
-
-
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.
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
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