mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-02 23:16:39 +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)"
|
|
}
|