bash_profile 颜色

bash_profile 颜色

我在许多 bash 配置文件中发现了这些设置,但我不知道它们是什么意思或有什么作用。有人能解释一下吗?谢谢!

# Terminal colors
NM="\[\033[0;38m\]" #means no background and white lines
HI="\[\033[0;37m\]" #change this for letter colors
HII="\[\033[0;31m\]" #change this for letter colors
SI="\[\033[0;33m\]" #this is for the current directory
IN="\[\033[0m\]"

答案1

这些是为您的 gnome-terminal 着色的语法。

例如第一个,

NM="\[\033[0;38m\]" #means no background and white lines

这里,

  • NM是一个变量

  • \[\033[m\]转义序列,用于指示中间的文本是颜色代码

  • 0;38表示没有背景和白线(如评论中所述)


参考:

相关内容