Created
March 20, 2024 22:51
-
-
Save maujim/a3d3cf78dbc4efd1c3a1de315d20c6e5 to your computer and use it in GitHub Desktop.
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 | |
target_file="$1" | |
target_file_name="$(basename "$1")" | |
echo '<?xml version="1.0" encoding="UTF-8"?>' | |
echo '<opml version="2.0">' | |
echo '<opml version="2.0">' | |
echo "<head> <title>rss feed from $target_file_name</title> </head>" | |
echo '<body>' | |
# remove empty lines, and comments (starting with '#') | |
sed -e '/^ *$/d' -e '/^ *#/d' "$target_file" | sed 's/.*/<outline xmlUrl="&"\/>/' | |
echo '</body>' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment