mac 环境变量
2021-09-29 本文已影响0人
子丿龙
一、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}