User Tools

Site Tools


bash:colors

This is an old revision of the document!


BASH - Colors

You can use these ANSI escape codes:

No Color0
Black0;30Dark Gray1;30
Red0;31Light Red1;31
Green0;32Light Green1;32
Brown/Orange0;33Yellow1;33
Blue0;34Light Blue1;34
Purple0;35Light Purple1;35
Cyan0;36Light Cyan1;36
Light Gray0;37White1;37

Red Example

echo -e "\033[0;31mThis is in RED"

Red Blue

echo -e “\033[0;31mThis is in RED\033[0;34mThis is in Blue”

echo -e "\033[0;31mThis is in RED"
RED='\033[0;31m'
NC='\033[0m' # No Color
printf "I ${RED}love${NC} Stack Overflow\n"

which prints love in red.


Colors

ANSI Rainbow

for (( i = 30; i < 38; i++ )); do echo -e "\033[0;"$i"m Normal: (0;$i); \033[1;"$i"m Light: (1;$i)"; done

bash/colors.1610194008.txt.gz · Last modified: 2021/01/09 12:06 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki