Skip to content

Instantly share code, notes, and snippets.

@ColonelBuendia
Created August 27, 2019 20:36
Show Gist options
  • Save ColonelBuendia/503814716dc7d3f289e5727c054568dd to your computer and use it in GitHub Desktop.
Save ColonelBuendia/503814716dc7d3f289e5727c054568dd to your computer and use it in GitHub Desktop.
podcast url directly from itunes
seekpod() { curl -sL "https://itunes.apple.com/search?term=$1&media=podcast" | python -m json.tool ; } #podcast search from itunes
seekpod2() { curl -sL "https://itunes.apple.com/search?term=$1&media=podcast" | python -m json.tool | egrep -i "artistName|feedUrl" ; } #podcast search from itunes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment