Skip to content

Instantly share code, notes, and snippets.

View HieronymusCH's full-sized avatar

Hieronymus HieronymusCH

View GitHub Profile
@HieronymusCH
HieronymusCH / gist:e38d56aa06b2720f3c3b3304eafaf1d0
Last active January 21, 2017 17:00 — forked from jpawlowski/gist:7af3920f4814869a4b32
Download all current video torrents of 32c3 congress at once.Credits go to @jansauer https://twitter.com/jansauer/status/681253309777358849
# This is only necessary if you are missing "grep"
brew install homebrew/dupes/grep
wget -q -O - https://cdn.media.ccc.de/congress/32C3/h264-hd/ | grep -oP '(?<=href=")[^"]*\.mp4(?=")' | xargs -I % bash -c 'test ! -f % && wget -q -nc "https://cdn.media.ccc.de/congress/32C3/h264-hd/%.torrent"'