Created
August 27, 2019 20:36
-
-
Save ColonelBuendia/503814716dc7d3f289e5727c054568dd to your computer and use it in GitHub Desktop.
podcast url directly from itunes
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
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