Files
gvm/scripts/display_error
T
2012-02-18 15:58:34 -08:00

9 lines
87 B
Plaintext

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