Last active
December 16, 2015 20:59
-
-
Save gonzaloserrano/5496751 to your computer and use it in GitHub Desktop.
Download some computer science videos popular in the HackerNews community
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
# requires python, use at your own risk :-) | |
mkdir youtube-dl | |
cd youtube-dl | |
wget http://youtube-dl.org/downloads/2013.05.01/youtube-dl | |
chmod +x youtube-dl | |
wget https://dl.dropboxusercontent.com/u/16897247/cs-videos.txt | |
for i in `cat cs-videos.txt | awk '{print $1}'`; do ./youtube-dl $i; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment