添加了~/.bash_profile之后,~/.bashrc失效以及bash失去高亮的原因及解决方案 发表于 2021-09-29 更新于 2024-05-30 阅读次数: 本文字数: 137 阅读时长 ≈ 1 分钟 问题表现添加~/.bash_profile之后,bash失去高亮,~/.bashrc中的逻辑不运行。添加前↑添加后↑ 问题原因在添加~/.bash_profile之后,~/.profile会被覆盖不再运行,而load bashrc的逻辑在~/.profile中,导致~/.bashrc也一并失效。 123456## 解决方案- 方案一:将```~/.bash_profile```中的逻辑移至```~/.profile```,并删除```~/.bash_profile```。- 方案二:在```~/.bash_profile```中添加以下代码保证```~/.profile```中的代码运行。 ```bash source ~/.profile 以上!まいど~