我正在编写脚本来初始化和配置包含许多组件的大型系统。
每个组件都有自己的日志文件。
每当安装/配置发生错误时,我想将组件文件名的颜色更改为红色。
我该怎么做?
答案1
谷歌会给你找到答案。用红色打印 Hello world:
echo -e "\033[0;31mHello world\033[0m"
解释
<esc><attr>;<foreground>m
<esc> = \033[ ANSI escape sequence, some environments will allow \e[ instead
<attr> = 0 Normal text - bold possible with 1;
<foreground> = 31 30 + 1 = Color red - obviously!
m = End of sequence
\033[0m Reset colors (otherwise following lines will be red too)
看着http://en.wikipedia.org/wiki/ANSI_escape_code有关颜色和其他功能的完整列表(粗体等)。
命令 tput(如果可用)将使生活变得更轻松:
echo -e "$(tput setaf 1)Hello world$(tput sgr0)"
甚至可以将序列保存在变量中以方便使用。
ERR_OPEN=$(tput setaf 1)
ERR_CLOSE=$(tput sgr0)
echo -e "${ERR_OPEN}Hello world${ERR_CLOSE}"
答案2
如果您有兴趣将颜色设置为变量,以下内容可能有助于为 bash 脚本设置颜色面板
COL_BLACK="\x1b[30;01m"
COL_LIGHTBLACK="\x1b[30;11m"
COL_BLUE="\x1b[34;01m"
COL_LIGHTBLUE="\x1b[34;11m"
COL_CYAN="\x1b[36;01m"
COL_LIGHTCYAN="\x1b[36;11m"
COL_GRAY="\x1b[37;11m"
COL_LIGHTGRAY="\x1b[37;01m"
COL_GREEN="\x1b[32;01m"
COL_LIGHTGREEN="\x1b[32;11m"
COL_PURPLE="\x1b[35;01m"
COL_LIGHTPURPLE="\x1b[35;11m"
COL_RED="\x1b[31;01m"
COL_LIGHTRED="\x1b[31;11m"
COL_YELLOW="\x1b[33;01m"
COL_LIGHTYELLOW="\x1b[33;11m"
COL_RESET="\x1b[39;49;00m"
答案3
http://webhome.csc.uvic.ca/~sae/seng265/fall04/tips/s265s047-tips/bash-using-colors.html。
这可能就是你想要的。
这样就可以得到$?
一个组件文件的进程,然后选择使用
echo -e "\e[1;31m"<the-component-file-name>\e[0m"
使其文本变为红色。