Narthex

Modular dictionary generator
git clone git@git.mcdim.xyz:/var/www/git/Narthex.git
Log | Files | Refs | README | LICENSE

commit dbff8aa05c3d8b6220e4ac8f461b7b810bf1ffc0
parent 6c09e2385aafd143109db6853a0a3e3d420f82f5
Author: Michael Constantine Dimopoulos <mk@mcdim.xyz>
Date:   Tue,  1 Feb 2022 16:48:13 +0000

Minor changes

Diffstat:
Mclean/nclean.1 | 2+-
Mrev/nrev.1 | 2+-
Mrev/nrev.sh | 4++--
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/clean/nclean.1 b/clean/nclean.1 @@ -15,7 +15,7 @@ nclean iterates over stdin and prints all lines that meet your specified criteri -s print lines that have special characters --l print lines of length greater or equal to that specified +-l print lines of length greater than or equal to that specified -v print version and exit diff --git a/rev/nrev.1 b/rev/nrev.1 @@ -1,6 +1,6 @@ .\" Manpage for nrev -.TH man 8 "15 Jul 2021" "1.1" "nrev manual page" +.TH man 8 "15 Jul 2021" "1.2" "nrev manual page" .SH NAME nrev \- Narthex reverser .SH SYNOPSIS diff --git a/rev/nrev.sh b/rev/nrev.sh @@ -23,9 +23,9 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. -version="1.1" +version="1.2" -if [ "$1" = "-v" ]; then echo version; exit; +if [ "$1" = "-v" ]; then echo $version; exit; elif [ "$1" = "-h" ]; then printf "nrev - Narthex reverser ${version} \n";