解决重启SHELL后不会自动加载.bash_profile

我用的zsh,由于平时设置的环境变量都是在.bash_profile文件中,每次重启iterm后,都需要重启手动加载.bash_profile文件,很麻烦。

设置自动加载.bash_profile的方法如下:
在.zshrc配置文件中调用.bash_profile文件
打开zsh的配置文件.zshrc,在最后面添加一行代码

source /Users/binny/.bash_profile

binny 替换为你自己的同户名

source ~/.zshrc

这样重启shell便会自动加载.bash_profile文件了。

你可能感兴趣的:(解决重启SHELL后不会自动加载.bash_profile)