Files
gvm/scripts/function/display_error
T
2012-02-28 21:55:24 -08:00

9 lines
87 B
Plaintext

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