Skip to content

Commit

Permalink
full: coding-style: Eliminate long lines
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 7, 2018
1 parent 043a2fd commit 77cf0e8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Source Code/GNU Bash Shell Script(full).template.bash
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,14 @@ print_help_message(){
printf '\t%s (command-line options and parameters)\n' "${RUNTIME_COMMANDLINE_BASECOMMAND}"
printf '\n'
printf '## Command-line Options ##\n'
meta_util_printSingleCommandlineOptionHelp "${COMMANDLINE_OPTION_DISPLAY_HELP_DESCRIPTION}" "${COMMANDLINE_OPTION_DISPLAY_HELP_LONG}" "${COMMANDLINE_OPTION_DISPLAY_HELP_SHORT}"
meta_util_printSingleCommandlineOptionHelp "${COMMANDLINE_OPTION_ENABLE_DEBUGGING_DESCRIPTION}" "${COMMANDLINE_OPTION_ENABLE_DEBUGGING_LONG}" "${COMMANDLINE_OPTION_ENABLE_DEBUGGING_SHORT}"
meta_util_printSingleCommandlineOptionHelp \
"${COMMANDLINE_OPTION_DISPLAY_HELP_DESCRIPTION}" \
"${COMMANDLINE_OPTION_DISPLAY_HELP_LONG}" \
"${COMMANDLINE_OPTION_DISPLAY_HELP_SHORT}"
meta_util_printSingleCommandlineOptionHelp \
"${COMMANDLINE_OPTION_ENABLE_DEBUGGING_DESCRIPTION}" \
"${COMMANDLINE_OPTION_ENABLE_DEBUGGING_LONG}" \
"${COMMANDLINE_OPTION_ENABLE_DEBUGGING_SHORT}"
return "${COMMON_RESULT_SUCCESS}"
}; declare -fr print_help_message

Expand Down

0 comments on commit 77cf0e8

Please sign in to comment.