compdude5

HPMoR Podcast Downloader

Sep 18th, 2014
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/bash
  2. # HPMoR Podcast downloader
  3. # Downloads the chapters listed in the table of contents and saves them to the current directory
  4. # with their original file names
  5.  
  6. curl http://www.hpmorpodcast.com/?page_id=56 | grep -o www.hpmorpodcast.com.*mp3 > hpmor_podcast_contents
  7. for i in `cat hpmor_podcast_contents`; do curl -O $i; done
Add Comment
Please, Sign In to add comment