-
-
Save allanfreitas/88859ac2e022e1cf294a2f740de67859 to your computer and use it in GitHub Desktop.
BASH: set variables for ANSI text color escape sequences
This file contains 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
RESTORE=$(echo -en '\033[0m') | |
RED=$(echo -en '\033[00;31m') | |
GREEN=$(echo -en '\033[00;32m') | |
YELLOW=$(echo -en '\033[00;33m') | |
BLUE=$(echo -en '\033[00;34m') | |
MAGENTA=$(echo -en '\033[00;35m') | |
PURPLE=$(echo -en '\033[00;35m') | |
CYAN=$(echo -en '\033[00;36m') | |
LIGHTGRAY=$(echo -en '\033[00;37m') | |
LRED=$(echo -en '\033[01;31m') | |
LGREEN=$(echo -en '\033[01;32m') | |
LYELLOW=$(echo -en '\033[01;33m') | |
LBLUE=$(echo -en '\033[01;34m') | |
LMAGENTA=$(echo -en '\033[01;35m') | |
LPURPLE=$(echo -en '\033[01;35m') | |
LCYAN=$(echo -en '\033[01;36m') | |
WHITE=$(echo -en '\033[01;37m') | |
# Test | |
echo ${RED}RED${GREEN}GREEN${YELLOW}YELLOW${BLUE}BLUE${PURPLE}PURPLE${CYAN}CYAN${WHITE}WHITE${RESTORE} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment