1.mac下环境变量加载顺序
1./etc/profile(全局建议修改这个文件 )
2./etc/paths (建议不修改这个文件 )
3.~/.bash_profile(改这个就行)
4.~/.bash_login
5.~/.profile
6.~/.bashrc
2.前两个是系统级别的,系统启动就会加载。后面 3 个是当前用户级别的环境变量。后面几个按照从前往后的顺序读取,如果 ~/.bash_profile 存在,则后面的几个文件就会被忽略不读了,如果 .bash_profile 不存在,才会依次读取垢面的文件
3.要是用的item2修改~/.bash_profile不生效
1.vim ~/.zshrc
2.添加source ~/.bash_profile ,这样~/.bash_profile配置的环境变量同样有效