From 5c08911132823735801aa70a4e2a23bc3f1c859a Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 27 Mar 2024 03:40:07 +0200 Subject: Moving stuff to lib --- lib/_ak_script_description | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 lib/_ak_script_description (limited to 'lib/_ak_script_description') 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 +} -- cgit v1.2.3