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_newline | 5 +++++ lib/_ak_script_description | 16 ++++++++++++++++ lib/_ak_script_exit | 17 +++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100755 lib/_ak_newline create mode 100755 lib/_ak_script_description create mode 100755 lib/_ak_script_exit (limited to 'lib') diff --git a/lib/_ak_newline b/lib/_ak_newline new file mode 100755 index 0000000..955ee6c --- /dev/null +++ b/lib/_ak_newline @@ -0,0 +1,5 @@ +#!/bin/bash + +new_line(){ + printf '\n' +} 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 +} diff --git a/lib/_ak_script_exit b/lib/_ak_script_exit new file mode 100755 index 0000000..81fe2c8 --- /dev/null +++ b/lib/_ak_script_exit @@ -0,0 +1,17 @@ +#!/bin/bash + +exit_program(){ +# cd $curdir +# if [ "$3" == "save_log" ] +# then +# tar cvfz $curdir/$(basename $tempdir)-$launch_timestamp.tgz $tempdir +# fi +# rm -rf $tempdir + if [ $1 -ne 0 ] + then + logit "EXIT" "$2 ($1)" + else + logit "EXIT" "$2" + fi + exit $1 +} -- cgit v1.2.3