Created
March 20, 2021 00:43
-
-
Save githubhy/56ddfacb66ebc00c6c4cf6f7abc82de2 to your computer and use it in GitHub Desktop.
Download all episodes from a podcast 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
URL=https://feeds.buzzsprout.com/136050.rss # A URL example | |
curl -s $URL | xmlstarlet sel -N atom="http://www.w3.org/2005/Atom" -t -m './/enclosure' -v '@url' -n | xargs -n 1 -P 10 wget -nc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment