环境变量配置文件顺序
/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc
配置.bash_profile,~目录没有就创建
Maven为例:
export M2_HOME=地址
export PATH=$PATH:$M2_HOME/bin #冒号隔开
source .bash_profile #命令生效
/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc
Maven为例:
export M2_HOME=地址
export PATH=$PATH:$M2_HOME/bin #冒号隔开
source .bash_profile #命令生效