diff options
author | P. J. McDermott <pjm@nac.net> | 2013-10-12 09:53:48 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-10-12 09:53:48 (EDT) |
commit | 14510e8e8055636a93a8cf3c302f89bd464d3ea3 (patch) | |
tree | f6e5ecc110ce07cf238bcc8c95b1fcf0ba1b1196 /lib/cmd | |
parent | 19436dbe4282d50606cedbbc89d6d10ec56c4937 (diff) |
Print option arguments in help output.
Diffstat (limited to 'lib/cmd')
-rw-r--r-- | lib/cmd/help.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/cmd/help.sh b/lib/cmd/help.sh index 733e9ed..e186663 100644 --- a/lib/cmd/help.sh +++ b/lib/cmd/help.sh @@ -33,9 +33,7 @@ cmd_help_main() printf "$(get_msg 'cmd_help_head')\n\n" "${0}" printf "$(get_msg 'cmd_help_opts_head')\n" - for opt in h V b; do - printf ' -%c %s\n' "${opt}" "$(get_msg "cmd_help_opt_${opt}")" - done + print_opt_summaries 'hVb:' printf '\n' printf "$(get_msg 'cmd_help_summary_head')\n" |