Ubuntu 终端高亮消失解决方法

解决方法

vim ~/.bash_profile

在最后添加

if [ -f ~/.bashrc ] ; then
        source ~/.bashrc
fi

问题原因

可能与~/.bash_profile文件内容被修改有关。

如果执行如下命令,即可在本次打开终端时恢复高亮。

source ~/.bashrc

参考

Linux学习笔记(五):解决.bashrc文件每次打开终端都需要source的问题

添加新评论