Skip to content

Instantly share code, notes, and snippets.

@Famicoman
Created July 30, 2014 11:34
Show Gist options
  • Save Famicoman/f211d0acea892dd674cf to your computer and use it in GitHub Desktop.
Save Famicoman/f211d0acea892dd674cf to your computer and use it in GitHub Desktop.
Twit HD Downloader
#!/bin/bash
#Usage: ./twit-hd-downloader.sh $mostRecentEpisodeNumber
#Use 3 digit episode number
#Will likely break for episode numbers < 100
for i in $(eval echo {$1..0})
do
wget -c -nc -e robots=off "http://twit.cachefly.net/video/twit/twit0$i/twit0$i""_h264m_1280x720_1872.mp4"
sleep 3s
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment