This downloads the CLR podcasts (http://clr.net/media.pl) using grep and wget. The '--no-clobber' switch for wget prevents it from re-downloading previously retrieved podcasts.
Last active
December 21, 2015 09:08
-
-
Save nrrb/6282485 to your computer and use it in GitHub Desktop.
CLR Podcast 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/sh | |
| wget http://clr.net/media.pl -O - --quiet | grep -o -E 'http://daten.clr.net/pod/[A-Za-z0-9_.]+.mp3' | sort | uniq | wget -i - --no-clobber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment