podcast_downloader: read RSS feeds and get podcast episodes

This AWK program reads from standard input or from one or more files. This input specifies the settings and the URLs of the RSS feeds to read. After reading the RSS feeds and getting episodes, the program writes the updated information to standard output. If you redirect the output to a file, you can use it for future input.

The program can use curl or wget to download files.

Download

Download a compressed archive file:

Unpack

Unpack the archive file. For example:

Example

Suppose that:

To:

awk -f podcast_downloader.awk -- podcasts.txt > podcasts.txt.new && mv podcasts.txt.new podcasts.txt

The compressed archives contain a shell script that does something similar.