Files
container.training/prepare-vms/lib/colors.sh
2017-10-29 14:45:54 +01:00

16 lines
210 B
Bash

bold() {
echo "$(tput bold)$1$(tput sgr0)"
}
red() {
echo "$(tput setaf 1)$1$(tput sgr0)"
}
green() {
echo "$(tput setaf 2)$1$(tput sgr0)"
}
yellow() {
echo "$(tput setaf 3)$1$(tput sgr0)"
}