Files
shell_functions/myfunctions.sh

8 lines
80 B
Bash

function myerror {
code=$1
shift
msg="$*"
echo $msg
exit $code
}