美文网首页
解决每次进入shell都要source ~/.bashrc问题

解决每次进入shell都要source ~/.bashrc问题

作者: duanmeng | 来源:发表于2020-05-07 13:16 被阅读0次

    shell下输入,编辑.bash_profile文件
    vim ~/.bash_profile
    在文件内部输入

    if test -f .bashrc ; then
    source .bashrc 
    fi
    

    按Esc,输入:wq保存退出vim编辑器

    重新启动shell,配置成功。

    相关文章

      网友评论

          本文标题:解决每次进入shell都要source ~/.bashrc问题

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