Skip to content

Instantly share code, notes, and snippets.

@fiskr
Created December 2, 2017 18:06
Show Gist options
  • Save fiskr/b0c01bbcbd2aefaa726d46bea30a3307 to your computer and use it in GitHub Desktop.
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.
#!/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