terminal 问题解决汇总
2018-11-06 本文已影响6人
会飞的大西瓜v
- base / zsh 切换
chsh -s /bin/zsh
chsh -s /bin/bash
- 安装了
oh-my-zsh
插件,
但发现之前在.bash_profile
自定义的一些内容都失效了。
oh-my-zsh
有自己的配置文件,覆盖了.bash_profile
的内容。
解决方法:
vi ~/.zshrc
,在最后一行加入source ~/.bash_profile
,
这样就可以”继承”.bash_profile
的配置了。
执行source ~/.zshrc
,让配置生效,重新使用,一切OK!