美文网首页
环境变量综述

环境变量综述

作者: 异想派 | 来源:发表于2017-02-28 22:43 被阅读9次

    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    #让配置生效
    

    相关文章

      网友评论

          本文标题:环境变量综述

          本文链接:https://www.haomeiwen.com/subject/fuvfgttx.html