当前位置: 代码迷 >> 综合 >> mac vim编辑bash_profile时报错Found a swap file by the name “.bash_profile.swp“
  详细解决方案

mac vim编辑bash_profile时报错Found a swap file by the name “.bash_profile.swp“

热度:78   发布时间:2023-12-22 17:32:00.0

解决问题Found a swap file by the name ".bash_profile.swp"报错

终端输入Q退出

Q

rm -f忽略不存在的文件 

rm -f ~/.bash_profile.swp

 source命令通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录。

source ~/.bash_profile

 

  相关解决方案