From ba56e50ee77d11c45f569ba8fbc95e6dadb323ef Mon Sep 17 00:00:00 2001 From: Alejandro Colomar Date: Tue, 23 Jan 2024 13:42:14 +0100 Subject: Tools: setup-unit: -hh: Add short-cut for the advanced help I hate having to type so much just for the useful help. Reviewed-by: Andrew Clayton Signed-off-by: Alejandro Colomar --- tools/setup-unit | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools') diff --git a/tools/setup-unit b/tools/setup-unit index bb5b2ba0..e9ad5896 100755 --- a/tools/setup-unit +++ b/tools/setup-unit @@ -37,7 +37,7 @@ help_unit() { cat <<__EOF__ ; SYNOPSIS - $0 [-h] COMMAND [ARGS] + $0 [-h[h]] COMMAND [ARGS] Subcommands ├── repo-config [-hn] [PKG-MANAGER OS-NAME OS-VERSION] @@ -62,7 +62,7 @@ OPTIONS -h, --help Print this help. - --help-more + -hh, --help-more Print help for more (advanced) commands. __EOF__ @@ -72,7 +72,7 @@ help_more_unit() { cat <<__EOF__ ; SYNOPSIS - $0 [-h] COMMAND [ARGS] + $0 [-h[h]] COMMAND [ARGS] Subcommands ├── cmd [-h] @@ -131,7 +131,7 @@ OPTIONS -h, --help Print basic help (some commands are hidden). - --help-more + -hh, --help-more Print the hidden help with more commands. __EOF__ @@ -1637,7 +1637,7 @@ while test $# -ge 1; do help_unit; exit 0; ;; - --help-more) + -hh | --help-more) help_more_unit; exit 0; ;; -- cgit