Created
April 6, 2015 21:03
-
-
Save liske/9398a69fff6ed6267dfa to your computer and use it in GitHub Desktop.
create complete playlist of http://www.tonatom.net/content/releases.html
This file contains 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
lynx --dump http://www.tonatom.net/content/releases.html | \ | |
egrep '[[:digit:]]+\. http://www\.tonatom\.net/releases' | \ | |
perl -ne 'chomp; s/^\s*\d+\. //; next if(exists($f{$_})); $f{$_}++; print "$_/playlist.m3u\n";' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice