diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..47d9143 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +default: rss.sh + ./rss.sh diff --git a/feed.xml b/feed.xml new file mode 100644 index 0000000..9912997 --- /dev/null +++ b/feed.xml @@ -0,0 +1,10 @@ +It's Pro Toad and Superb Owl +00004.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00004.md +00001.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00001.md +00005.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00005.md +00008.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00008.md +00002.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00002.md +00006.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00006.md +00007.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00007.md +00003.mdhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/00003.md + diff --git a/rss.sh b/rss.sh new file mode 100755 index 0000000..63afb73 --- /dev/null +++ b/rss.sh @@ -0,0 +1,9 @@ +#bin/sh +echo "It's Pro Toad and Superb Owl" > feed.xml + +for f in $(find . -type f -iname '*.md' ! -name 'README.md' | sed 's/\.\///'); do + echo "$fhttps://git.tilde.town/dozens/protoadandsuperbowl/raw/branch/master/$f" >> feed.xml +done + +echo '' >> feed.xml +