Skip to content

Instantly share code, notes, and snippets.

@christophwolff
Created December 10, 2018 21:32
Show Gist options
  • Save christophwolff/ea6f021423956c23c3adc6833857b4d3 to your computer and use it in GitHub Desktop.
Save christophwolff/ea6f021423956c23c3adc6833857b4d3 to your computer and use it in GitHub Desktop.
Add RSS Feeds to Pocket Casts from txt file
#!/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