Created
September 9, 2019 11:57
-
-
Save kkroesch/22ca2d0dfacfa85aa421180196e15356 to your computer and use it in GitHub Desktop.
Colorize your shell script output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function header { | |
echo "" | |
echo "$(tput setaf 6)$1$(tput sgr0)" | |
echo "" | |
} | |
header "Creating MySQL database ..." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For an overview of available colors, see this excellent answer on Stackoverflow.