From 49f6fc03a42e7b875f691f7476e956923f731a62 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Sat, 6 Feb 2021 14:04:44 -0600 Subject: [PATCH] Rename to shatom --- README.md | 10 +++++----- gemshimfeed => shatom | 30 +++++++++++++++--------------- 2 files changed, 20 insertions(+), 20 deletions(-) rename gemshimfeed => shatom (83%) diff --git a/README.md b/README.md index c2c1bc6..92ab758 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# gemshimfeed +# shatom ## an Atom feed generator in (mostly) POSIX shell Because of [this post in the Gemini mailing list](https://lists.orbitalfox.eu/archives/gemini/2020/003407.html), which bemoans the inability to generate Atom feeds using bare-bones computers, -I present `gemshimfeed`, a shell program that purports to do just that. +I present `shatom`, a shell program that purports to do just that. It has minimal dependencies (see DEPENDENCIES, below), and is completely modifiable by the user with the config file @@ -25,12 +25,12 @@ you're writing another script. ## CONFIG -All of the functions and variables defined in `gemshimfeed` +All of the functions and variables defined in `shatom` can be overwritten by a config file, by default -`gemshimfeed.conf.sh` in the current directory. +`shatom.conf.sh` in the current directory. As may be obvious from the file's extension, it's a shell script, so you can redefine (and in fact, *should* redefine) -all the variables and functions in `gemshimfeed` to suit your needs. +all the variables and functions in `shatom` to suit your needs. Here's a convenient list: diff --git a/gemshimfeed b/shatom similarity index 83% rename from gemshimfeed rename to shatom index 3025182..48b99ff 100755 --- a/gemshimfeed +++ b/shatom @@ -8,12 +8,12 @@ usage() { cat < $FEED_ID -GemShimFeed +shatom $FEED_COPYRIGHT $FEED_UPDATED END @@ -132,7 +132,7 @@ END } main() { - CONFIGFILE="$PWD/gemshimfeed.conf.sh" + CONFIGFILE="$PWD/$0.conf.sh" case "$1" in -h) usage