ls显示颜色

打开 terminal 会发现 ls 和 grep 后的结果是没有色彩的,这时候可以这么干:

vim  ~/.bash_profile
 
export CLICOLOR=1
export LSCOLORS=Exfxcxdxbxegedabagacad
export GREP_OPTIONS='--color=auto'
#最后更新环境变量
. ~/.bash_profile   or   source ~/.bash_profile

打开 terminal ,查看 ls 之后的结果,是不是上彩色了呢?

你可能感兴趣的:(ls显示颜色)