Bash Colors

You can make your BASH script more pretty, by colorizing its output. Use ANSI escape sequences to set text properties like foreground and background colors. Colorizing Shell Use the following template for writing colored text: echo -e “\e[COLORmSample Text\e[0m” Option Description -e Enable interpretation of backslash escapes \e[ Begin the color modifications COLORm Color Code […]