Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MacLemon/2b0042200debe8f9d663 to your computer and use it in GitHub Desktop.
Save MacLemon/2b0042200debe8f9d663 to your computer and use it in GitHub Desktop.
Fetches all .torrent files for the #CCCamp15 recordings in MP4/H.264 HD format for downloading and seeding.
for ITEM in $(curl -s "http://cdn.media.ccc.de/events/camp2015/h264-hd/" | grep mp4 | sed -e 's/^.*a href=\"/http:\/\/cdn.media\.ccc\.de\/events\/camp2015\/h264-hd\//g' -e 's/\.mp4.*/\.mp4\.torrent/g'); do curl -LO "$ITEM" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment