美文网首页
ubuntu 解决.bash_profile关闭终端无效

ubuntu 解决.bash_profile关闭终端无效

作者: 牧馬放飏 | 来源:发表于2019-01-08 11:49 被阅读6次

    通过.bash_profile配置环境变量的时候,关闭终端,或者重启调用电脑的时候,会导致配置的环境变量无效,这是因为.bash_profile只是在登录的是加载了一次,在打开终端的时候并没有加载,只是加载了.bashrc文件,如果想要在打开终端的时候加载.bash_profile,只需要在.bashrc添加下面一段代码。

    # 读取.bash_profile中的环境变量
    if test -f .bash_profile; then
        . .bash_profile
    fi
    

    注意:
    . .bash_profile中间有一个空格。

    相关文章

      网友评论

          本文标题:ubuntu 解决.bash_profile关闭终端无效

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