Skip to content

Instantly share code, notes, and snippets.

@monkeydom
Created January 1, 2014 22:28
Show Gist options
  • Save monkeydom/8212210 to your computer and use it in GitHub Desktop.
Save monkeydom/8212210 to your computer and use it in GitHub Desktop.
command line help to download all congress session videos
#!/bin/sh
# before that do e.g. brew install lynx and brew install aria2
for x in `lynx http://cdn.media.ccc.de/congress/2013/mp4/ --dump | grep "http" | grep "30c3" | cut -c 7-`; do
echo "$x".torrent;
done > SessionTorrentList.txt
aria2c --seed-time=0 -Z -i SessionTorrentList.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment