ANSI/VT100 终端和终端仿真器不只是能够显示黑色和白色文本; 由于转义序列,它们可以显示颜色和格式化文本。
在 Bash 中,可以使用以下语法获取字符:
\e
\033
\x1B
例子:
代码(Bash) | Preview |
---|---|
echo -e “\e[31mHello World \e[0m” | |
echo -e “\033 [31mHello \e[0m World” |
注意:
- 该命令的 - e 选项 echo 启用转义序列的解析。
\e[0m
序列删除所有属性(格式和颜色)。在每个彩色文本的末尾添加它是个好主意.- 本页中的示例使用 Bash,但
ANSI/VT100
转义序列可用于各种编程语言。
以下颜色适用于大多数终端和终端仿真器 2), 请参阅兼容性列表以获取更多信息。
颜色可能因终端配置而异。
某些终端(参见兼容性列表)可以支持 88 或 256 种颜色。以下是允许您使用它们的控制序列。
注意:颜色编号 256 仅由 vte 支持(GNOME 终端,XFCE4 终端,Nautilus 终端,终结者…)。
注意 2:88 色终端(如 rxvt)与 256 色终端的颜色图不同。
要使用前景中的 256 种颜色之一(文本颜色),控制序列为 “ \e[38;5;
ColorNumberm
”,其中 ColorNumber 是以下颜色之一:
Example:
echo -e "\e[38;5;82mHello \e[38;5;198mWorld"
for i in {16..21} {21..16} ; do echo -en "\e[38;5;${i}m#\e[0m" ; done ; echo
要在背景上使用 256 种颜色中的一种,控制序列为 “ \e[48;5;
ColorNumberm
”,其中 ColorNumber 是以下颜色之一:
Example:
echo -e "\e[40;38;5;82m Hello \e[30;48;5;82m World \e[0m"
for i in {16..21} {21..16} ; do echo -en "\e[48;5;${i}m \e[0m" ; done ; echo
终端允许属性组合。属性必须用分号(“;”)分隔。
Description | Code (Bash) | Preview |
---|---|---|
Bold + Underlined | echo -e “\e[1;4mBold and Underlined” | |
Bold + Red forground + Green background | echo -e “\e[1;31;42m Yes it is awful \e[0m” |
表中使用的符号:
“ok”:终端支持。
“~”:终端以特殊方式支持。
“-”:终端根本不支持。
以下 shell 脚本显示了许多可能的属性组合(但不是全部,因为它一次只使用一个格式属性)。
#!/bin/bash
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
#Background
for clbg in {40..47} {100..107} 49 ; do
#Foreground
for clfg in {30..37} {90..97} 39 ; do
#Formatting
for attr in 0 1 2 4 5 7 ; do
#Print the result
echo -en "\e[${attr};${clbg};${clfg}m ^[${attr};${clbg};${clfg}m \e[0m"
done
echo #Newline
done
done
exit 0
以下脚本显示某些终端和终端仿真器(如 XTerm 和 GNOME Terminal)上可用的 256 种颜色。
#!/bin/bash
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
for fgbg in 38 48 ; do # Foreground / Background
for color in {0..255} ; do # Colors
# Display the color
printf "\e[${fgbg};5;%sm %3s \e[0m" $color $color
# Display 6 colors per lines
if [ $((($color + 1) % 6)) == 4 ] ; then
echo # New line
fi
done
echo # New line
done
exit 0
Linux console codes manual (’‘man console_codes’’)
XTerm Control Sequences