Skip to content

Commit afdabe0

Browse files
committed
primitive: print_help: Sort options alphabetically
Signed-off-by: 林博仁(Buo-ren Lin) <[email protected]>
1 parent 877c6f1 commit afdabe0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source Code/Shell Script(GNU Bash)(primitive).template.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ print_help(){
9595
"${RUNTIME_COMMANDLINE_BASECOMMAND}"
9696

9797
printf '## COMMAND-LINE OPTIONS ##\n'
98-
printf '### `-h` / `--help` ###\n'
99-
printf 'Print this message\n\n'
100-
10198
printf '### `-d` / `--debug` ###\n'
10299
printf 'Enable script debugging\n\n'
100+
101+
printf '### `-h` / `--help` ###\n'
102+
printf 'Print this message\n\n'
103103
}
104104
return 0
105105
}; declare -fr print_help;

0 commit comments

Comments
 (0)