From 4d76920fa980792cde032d62c24bc88f8cf689c0 Mon Sep 17 00:00:00 2001 From: Dominic Ricottone Date: Fri, 16 Sep 2022 16:05:38 -0500 Subject: [PATCH] Effectively no change I realized why I was deliberately ignoring the quiet option in these scripts. It was already being handled in myminiparse.sh. --- core/whichcat | 3 +-- core/whiched | 2 +- core/whichvi | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/whichcat b/core/whichcat index 1400510..cf2c685 100755 --- a/core/whichcat +++ b/core/whichcat @@ -15,11 +15,10 @@ EOF . /usr/local/lib/myminiparse.sh code=0 -quiet=0 for arg; do case "$arg" in -q|--quiet) - quiet=1 + #handled in myminiparse.sh ;; *) diff --git a/core/whiched b/core/whiched index 3ac9338..7f1ee61 100755 --- a/core/whiched +++ b/core/whiched @@ -21,7 +21,7 @@ EOF for arg; do case "$arg" in -q|--quiet) - quiet=1 + #handled in myminiparse.sh ;; *) diff --git a/core/whichvi b/core/whichvi index 156071e..4a981f4 100755 --- a/core/whichvi +++ b/core/whichvi @@ -21,7 +21,7 @@ EOF for arg; do case "$arg" in -q|--quiet) - quiet=1 + #handled in myminiparse.sh ;; *) -- 2.45.2