Skip to content

Instantly share code, notes, and snippets.

@nrrb
Last active December 21, 2015 09:08
Show Gist options
  • Select an option

  • Save nrrb/6282485 to your computer and use it in GitHub Desktop.

Select an option

Save nrrb/6282485 to your computer and use it in GitHub Desktop.
CLR Podcast Downloader

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.

#!/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