Files
gvm/scripts/function/display_warning
T
2012-03-28 21:52:52 -07:00

13 lines
160 B
Plaintext

display_warning() {
which tput &> /dev/null
if [[ "$?" == "0" ]]; then
# YELLOW!
tput sgr0
tput setaf 3
echo "$1"
tput sgr0
else
echo "$1"
fi
}