echo 不进行颜色设置

echo 不进行颜色设置

在我的 bashrc 中打印了一些有用目录的文本,但回显文本的颜色不是从 dircolors 的定义中获取的。

在 dircolors 我有

NORMAL  01;32  # Bold Green  
FILE    01;37  # Bold White for regular files
RESET   0      # Reset to normal color

这是我在 bashrc 中的设置

PS1='\n\[\033[01;36m\]\u@\h:'   
PS1=$PS1'\n+ \[\033[38;5;214m\]\w\[\033[00m\]\n'

eval "$(dircolors -b ~/rcutils/dircolors)"
 
echo "Useful Directories:" 
echo "  cd ~/tdr"

相关内容