Skip to content

Instantly share code, notes, and snippets.

@liske
Created April 6, 2015 21:03
Show Gist options
  • Save liske/9398a69fff6ed6267dfa to your computer and use it in GitHub Desktop.
Save liske/9398a69fff6ed6267dfa to your computer and use it in GitHub Desktop.
create complete playlist of http://www.tonatom.net/content/releases.html
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";'
@AnabiYussif
Copy link

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment