linux下vi或vim操作Found a swap file by the name的原因及解决方法--九五小庞

在linux下用vi或vim打开Test.java文件时

root@localhost tmp# vi Test.java

出现了如下信息:

E325: ATTENTION

Found a swap file by the name ".Test.java.swp"

owned by: root dated: Wed Dec 7 13:52:56 2011

file name: /var/tmp/Test.java

modified: YES

user name: root host name: localhost

process ID: 26153 (still running)

While opening file "Test.java"

dated: Wed Dec 7 14:00:46 2011

NEWER than swap file!

(1) Another program may be editing the same file.

If this is the case, be careful not to end up with two

different instances of the same file when making changes.

Quit, or continue with caution.

(2) An edit session for this file crashed.

If this is the case, use ":recover" or "vim -r Test.java"

to recover the changes (see ":help recovery").

If you did this already, delete the swap file ".Test.java.swp"

to avoid this message.

"Test.java" 11L, 237C

Press ENTER or type command to continue

原因是在此次vi或vim操作前有过一次使用vi或vim 操作Test.java文件时出现了异常中断,所以在当前目录下产生了一个.Test.java.swp文件,这个文件使用ls命令查看不能发现,使用ls -a命令查看可以知道Test.java.swp是一个隐藏文件。

注:以.开头的文件就是隐藏文件

想要不再有上面的警告提示,把该文件删除即可:

root@localhost tmp# rm .Test.java.swp

rm: remove regular file `.Test.java.swp'? y

root@localhost tmp#

使用vi或vim编辑其他文件出现类似情况的处理方法一样可以。


版权声明:本文为CSDN博主「kenhins」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/kenhins/article/details/50781071

相关推荐
zh路西法6 小时前
【navigation2全局路径更新频率修正】行为树框架的巧妙利用
linux
曲幽7 小时前
FastAPI 身份验证总踩坑?这份 FastAPI Users “避坑指南”请收好
python·fastapi·web·jwt·oauth2·user·authentication
苏宸啊7 小时前
IPC管道
linux·c++
bush47 小时前
嵌入式linux学习记录十,定时器
linux·嵌入式
装不满的克莱因瓶7 小时前
掌握 RNN 与 LSTM 模型结构
人工智能·python·rnn·深度学习·神经网络·ai·lstm
何以解忧,唯有..7 小时前
Python包管理工具pip:从入门到精通
开发语言·python·pip
峥无7 小时前
Linux进程信号:从基础概念到内核底层原理
linux·运维·服务器·信号处理
广州灵眸科技有限公司7 小时前
瑞芯微RV1126B开发板(EASY-EAI-PI2) 开发(编译)方式说明
linux·服务器·单片机·嵌入式硬件·电脑
金銀銅鐵7 小时前
用 Tkinter 实现简单的猜数字游戏
后端·python
copyer_xyf8 小时前
Python 模块与包的导入导出
前端·后端·python