一、mac环境变量的位置
# 1、2系统界别 3、4、5依次读取,读到就停止不会往后读了
1. /etc/profile
2. /etc/paths
3. ~/.bash_profile
4. ~/.bash_login
5. ~/.profile
二、格式
# 一定要带上原来的变量 ${PATH}
export MAVEN=/Users/zilong/apache-maven-3.8.2/bin
PATH=$MAVEN:${PATH}
# 1、2系统界别 3、4、5依次读取,读到就停止不会往后读了
1. /etc/profile
2. /etc/paths
3. ~/.bash_profile
4. ~/.bash_login
5. ~/.profile
# 一定要带上原来的变量 ${PATH}
export MAVEN=/Users/zilong/apache-maven-3.8.2/bin
PATH=$MAVEN:${PATH}
本文标题:mac 环境变量
本文链接:https://www.haomeiwen.com/subject/momjnltx.html
网友评论