diff options
Diffstat (limited to 'lib/_ak_script_description')
-rwxr-xr-x | lib/_ak_script_description | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/_ak_script_description b/lib/_ak_script_description new file mode 100755 index 0000000..740b1c4 --- /dev/null +++ b/lib/_ak_script_description @@ -0,0 +1,16 @@ +#!/bin/bash + +source $AK_LIBDIR/_ak_newline + +description(){ + full_title="$(printf '%s - %s' "$PROGRAM" "$descriptionString")" + delimiter_count=`echo -n $full_title | wc -c` + printf '%s' "$full_title" + new_line + while [ $delimiter_count -gt 0 ] + do + printf '=' + delimiter_count=$(($delimiter_count-1)) + done + new_line +} |