Created
December 10, 2018 21:32
-
-
Save christophwolff/ea6f021423956c23c3adc6833857b4d3 to your computer and use it in GitHub Desktop.
Add RSS Feeds to Pocket Casts from txt file
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
#!/bin/bash | |
while read p; do | |
echo "Adding $p" | |
curl -X POST -F url="$p" https://refresh.pocketcasts.com/author/add_feed_url | |
done <podcasts.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment