Skip to content

Commit

Permalink
primitive: print_help: Sort options alphabetically
Browse files Browse the repository at this point in the history
Signed-off-by: 林博仁(Buo-ren Lin) <[email protected]>
  • Loading branch information
brlin-tw committed May 4, 2018
1 parent 877c6f1 commit afdabe0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source Code/Shell Script(GNU Bash)(primitive).template.bash
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ print_help(){
"${RUNTIME_COMMANDLINE_BASECOMMAND}"

printf '## COMMAND-LINE OPTIONS ##\n'
printf '### `-h` / `--help` ###\n'
printf 'Print this message\n\n'

printf '### `-d` / `--debug` ###\n'
printf 'Enable script debugging\n\n'

printf '### `-h` / `--help` ###\n'
printf 'Print this message\n\n'
}
return 0
}; declare -fr print_help;
Expand Down

0 comments on commit afdabe0

Please sign in to comment.