Created
December 2, 2017 18:06
-
-
Save fiskr/b0c01bbcbd2aefaa726d46bea30a3307 to your computer and use it in GitHub Desktop.
In one line, download all How We Roll podcast episodes from their RSS feed.
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/bash | |
curl https://rss.simplecast.com/podcasts/3236/rss | grep mp3 | perl -pe 's/.*?url="([^"]+)".*/$1/g' | xargs wget --content-disposition |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment