1、查看当前环境变量
echo $PATH
2、永久增加环境变量
echo $SHELL # 查看shell版本,Mac OS X 10.3之后默认的是Bourne Shell
touch ~/.bash_profile
open -t ~/.bash_profile #打开~/.bash_profile 文件
export PATH="$HOME/.rbenv/bin:$PATH" #新增环境变量
source ~/.bash_profile #让配置生效
1、查看当前环境变量
echo $PATH
2、永久增加环境变量
echo $SHELL # 查看shell版本,Mac OS X 10.3之后默认的是Bourne Shell
touch ~/.bash_profile
open -t ~/.bash_profile #打开~/.bash_profile 文件
export PATH="$HOME/.rbenv/bin:$PATH" #新增环境变量
source ~/.bash_profile #让配置生效