Files
pod_grabber/pod_grabber.sh
2020-09-24 06:32:24 -04:00

13 lines
267 B
Bash
Executable File

#!/bin/bash
#Download podcasts from rss feeds.
target_url=$1
echo "Getting Feed..."
wget -q $target_url -O -|grep ".mp3"|sed -e 's/<[^>]*>//g'>.holding_file.txt
echo "Getting Podcast..."
wget -i .holding_file.txt
rm .holding_file.txt
echo "Download Finished."
exit