I am trying to implement an abort function in a bash script, currently it looks like this:
function abort {
LOGFILE=/var/log/bash_test
DATE=$(date "+%Y %b %a %H:%M:%S")
printf "\n------| ERROR: %s line %03d in %s |------\n" "$DATE" "$2" "${0}" >> "$LOGFILE"
echo "$1" >> "$LOGFILE"
}
abort "Some kind of error..." $LINENO
This will produce this in /var/log/bash_test
------| ERROR: 2014 Jan Tue 12:50:12 line 007 in /home/user/test.sh |------
Some kind of error
My question is this: The method of giving the line number manually (eg. $2 < $LINENO) is ugly and repetitive. Is there a way to make this function detect the $LINENO from outside the function automatically? So that i can give the command
abort "Some kind of error..."
And still get the line number?
You should be able to use BASH_LINENO:
That is, the second to last entry will be the line number where the call to
my_environment
happened.From the
man bash
section aboutBASH_LINENO
: