Skip to content

Instantly share code, notes, and snippets.

@georgehrke
Created December 31, 2013 21:26
Show Gist options
  • Save georgehrke/8202384 to your computer and use it in GitHub Desktop.
Save georgehrke/8202384 to your computer and use it in GitHub Desktop.
Download all 30c3 torrents at once
parameter="";
for x in `lynx http://cdn.media.ccc.de/congress/2013/mp4/ --dump | grep "http" | grep "30c3" | cut -c 7-`; do
parameter="$parameter -O $x.torrent";
done
curl $parameter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment