美文网首页
terminal 问题解决汇总

terminal 问题解决汇总

作者: 会飞的大西瓜v | 来源:发表于2018-11-06 19:44 被阅读6次
    1. base / zsh 切换
    chsh -s /bin/zsh
    chsh -s /bin/bash
    
    1. 安装了oh-my-zsh插件,
      但发现之前在.bash_profile自定义的一些内容都失效了。
      oh-my-zsh有自己的配置文件,覆盖了.bash_profile的内容。
      解决方法:
      vi ~/.zshrc,在最后一行加入source ~/.bash_profile
      这样就可以”继承”.bash_profile的配置了。
      执行source ~/.zshrc,让配置生效,重新使用,一切OK!

    相关文章

      网友评论

          本文标题:terminal 问题解决汇总

          本文链接:https://www.haomeiwen.com/subject/hacpxqtx.html