Files
gvm/scripts/function/display_error
T

9 lines
87 B
Plaintext

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