This file contains 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
#!/usr/bin/env bash | |
# Generates an RSS feed for a list of audio files, for consumption by Overcast | |
# and other podcast players. | |
# | |
# Usage: make-audio-feed TITLE BASE_URL FILE... | |
# Example: (cd directory && make-audio-feed 'My Audio Files' 'https://your.server/directory/' * > .feed.rss) | |
set -eu -o pipefail |