mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-18 12:29:18 +00:00
16 lines
210 B
Bash
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)"
|
|
}
|