我是 OS X 的新手,在使用 Ubuntu Linux 一段时间后刚刚获得了 Mac。在我试图弄清楚的许多事情中,我的终端窗口中没有颜色——比如在运行时(在 Linux 上)显示的颜色ls -la或者git status......
ls -la
git status
我只是不知道如何在我的外壳中激活颜色。
这是我找到的启用全局 终端颜色的解决方案。
在您的主目录中编辑您的.bash_profile(自 OS X 10.8 起)“或(适用于 10.7 及更早版本):.profile或.bashrc或/etc/profile(取决于可用性)”并添加以下代码:
.bash_profile
.profile
.bashrc
/etc/profile
export CLICOLOR=1 export LSCOLORS=GxFxCxDxBxegedabagaced
CLICOLOR=1只需启用终端着色。
CLICOLOR=1
LSCOLORS=...指定如何为特定项目着色。
LSCOLORS=...
编辑后.bash_profile,启动终端并通过执行以下命令强制进行更改:
source ~/.bash_profile
然后转到Terminal > Preferences,单击Profiles选项卡,然后单击Text子选项卡并检查Display ANSI Colors。
Terminal > Preferences
Profiles
Text
Display ANSI Colors
在 Sierra 上验证(2017 年 5 月)。