gaboshlib/gaboshlib/g_echo_error_exit.bashfunc
2022-07-06 12:24:21 +02:00

9 lines
163 B
Bash

#!/bin/bash
function g_echo_error_exit {
g_echo_error "$@"
# kill and no exit because exit may be have no fuction if this is started by Subshell
kill -1 $$
}