Skip to content

Instantly share code, notes, and snippets.

@githubhy
Created March 20, 2021 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save githubhy/56ddfacb66ebc00c6c4cf6f7abc82de2 to your computer and use it in GitHub Desktop.
Save githubhy/56ddfacb66ebc00c6c4cf6f7abc82de2 to your computer and use it in GitHub Desktop.
Download all episodes from a podcast RSS feed
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