解决重启SHELL后不会自动加载.bash_profile
2018-11-16 本文已影响0人
ag4kd
我用的zsh,由于平时设置的环境变量都是在.bash_profile文件中,每次重启iterm后,都需要重启手动加载.bash_profile文件,很麻烦。
设置自动加载.bash_profile的方法如下:
在.zshrc配置文件中调用.bash_profile文件
打开zsh的配置文件.zshrc,在最后面添加一行代码
source /Users/binny/.bash_profile
binny 替换为你自己的同户名
source ~/.zshrc
这样重启shell便会自动加载.bash_profile文件了。