美文网首页
zsh 每次需要 source ~/.bash_profile

zsh 每次需要 source ~/.bash_profile

作者: yulekwok | 来源:发表于2020-05-19 09:18 被阅读0次

从 macOS Catalina 版开始,您的 Mac 将使用 zsh 作为默认登录 Shell 和交互式 Shell
那么如何不每次运行 source ~/.bash_profile呢
键入以下命令

vim ~/.zprofile

然后 键入i 进行编辑 将下面的粘贴进去即可

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

esc :wq 保存退出

这样就不用每次都source ~/.bash_profile 了

相关文章

网友评论

      本文标题:zsh 每次需要 source ~/.bash_profile

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