Add basic color support

This commit is contained in:
rwxrob 2021-12-16 00:22:08 -05:00
parent b77c674962
commit 32593202c6
No known key found for this signature in database
GPG Key ID: 1CCACEDD2F65578E
1 changed files with 10 additions and 0 deletions

10
cmd
View File

@ -13,6 +13,16 @@ set -e
declare -A HELP
declare -A CONF
declare black="\e[30m"
declare red="\e[31m"
declare green="\e[32m"
declare yellow="\e[33m"
declare blue="\e[34m"
declare magenta="\e[35m"
declare cyan="\e[36m"
declare white="\e[37m"
declare reset="\e[0m"
_initialize() {
: # put initialization code here
}