Created
July 30, 2014 11:34
-
-
Save Famicoman/f211d0acea892dd674cf to your computer and use it in GitHub Desktop.
Twit HD Downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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