From ff9c01d9daf70732400f90e92521e7c84a840978 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Mon, 19 Apr 2021 09:00:42 +0900 Subject: [PATCH] include/opt: Rename --shush argument to --quiet It is more common to use -q or --quiet to make commandline utilities emit less output. This commit renames the -w/--shush argument to -q/ --quiet to follow that convention. --- include/opt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/opt.sh b/include/opt.sh index 1a612ed..a654502 100644 --- a/include/opt.sh +++ b/include/opt.sh @@ -26,7 +26,7 @@ __init() { opt_add_arg "v" "verbose" "" 0 \ "Be more verbose" \ log_increase_verbosity - opt_add_arg "w" "shush" "" 0 \ + opt_add_arg "q" "quiet" "" 0 \ "Be less verbose" \ log_decrease_verbosity -- 2.47.3