[Linux] vi命令 — 保存、退出、切换文件

保存:

:w 保存

:w hi.bak 保存到hi.bak中(但VI当前正在编辑的文件仍是原来那个文件)

:w >> another.txt 把当前内容追加到another.txt中

停止vi

  ZZ : 保存并退出

  :q! : 退出,不保存

切换文件:

  :e 2.txt   — 切换到2.txt(前提是当前文件已保存)

  :e !2.txt  — 切换到2.txt,如果当前文件未保存,丢弃修改

  

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.