新建/.bash_profile用户级文件
touch ~/.bash_profile
添加环境变量,如果没有空格,路径不需要加引号,如果有空格,在路径上加个单引号。
export PATH=$HOME/path:$PATH
让配置生效
source ~/.bash_profile
查看环境变量
echo $PATH
新建/.bash_profile用户级文件
touch ~/.bash_profile
添加环境变量,如果没有空格,路径不需要加引号,如果有空格,在路径上加个单引号。
export PATH=$HOME/path:$PATH
让配置生效
source ~/.bash_profile
查看环境变量
echo $PATH