Files
gvm/scripts/function/display_fatal
T
2012-03-27 22:45:03 -07:00

9 lines
87 B
Plaintext

display_fatal() {
tput sgr0
tput setaf 1
echo "ERROR: $1" >&2
tput sgr0
exit 1
}