美文网首页
mac编辑bash_profile

mac编辑bash_profile

作者: 小院里栽棵树 | 来源:发表于2022-02-10 19:18 被阅读0次

    vim ~/.bash_profile 进入文件
    输入i 进入编辑模式
    编辑完成后 按esc 退出编辑 , 然后:q 是退出文件 :wq是保存并退出

    但有时候 会报

    No write since last change (add ! to override)
    

    这是因为我们没有写的权限导致的,这里我们可以在命令的前面加上 sudo 来临时获取管理员权限,即使用 sudo vim ~/.bash_profile 来打开文件, 在退出文件后,我们使用命令source ~/.bash_profile来刷新文件,使刚才我们修改的配置即时生效.

    偶尔我们也会遇到下面这个错误

    Found a swap file by the name ".bash_profile.swp"
    

    这是因为我们可能有别的程序正在修改bash_profile ,我们只需关闭其他正在修改的程序即可,如果关闭后还不可以的话,那么我们可以删除这个临时文件rm -f ~/.bash_profile.swp,然后在重新进入bash_profile编辑即可

    相关文章

      网友评论

          本文标题:mac编辑bash_profile

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