Linux vim save and exit

How To: Vi / Vim Save And Quit The Editor Command

Tutorial details
Difficulty level Easy
Root privileges No
Requirements vi / vim
Est. reading time Less than 1 min

vi or vim (Vi IMproved) is text editor or a programmers text editor. You can edit programs or configuration files on the Linux/Unix server. Vim is upwards compatible to Vi. This page explains how to save a file in Vim or vi and quit the editor under Linux or Unix-like systems.

Vim Save And Quit The Editor Command

The procedure to save a file in vim / vi and quit the editor is as follows:

  1. Open the terminal application in Linux or Unix
  2. Next, open a file in vim / vi, type: vim filename
  3. To save a file in Vim / vi, press Esc key, type :w and hit Enter key
  4. One can save a file and quit vim / Vi by pressing Esc key, type 😡 and hit Enter key

Let us see all commands and examples in details.

How to open a file in Vim / Vi

You can start vi/vim by typing the following command:
vim file
vi file
vim [options] filename
vim helloworld.sh

Understanding vim modes

When we start vim/vi text editor, we are in normal mode. This mode allows use to use vim commands and navigate around the file as per our needs. In order to edit text, you need to enter the insert mode by pressing i key. This way, we can edit our program or configuration files such as /etc/nginx/nginx.conf.

Of course, you can go back to normal mode by pressing Esc key again.

How to save and quit the vi or vim text editor

To save and quit the vi or vim editor with saving any changes you have made:

  1. If you are currently in insert or append mode, press Esc key.
  2. Press : (colon). The cursor should reappear at the lower left corner of the screen beside a colon prompt.
  3. Enter the following command (type 😡 and press Enter key):
  • Press ENTER key
  • This will quit the editor, and all changes you have made to the document will be saved to the file.
  • Use x to save a file and exit:

    Fig.01: Vi / vim save and quit demo.

    How to trash all changes in vi/vim

    If you do not want to save any changes, first press Esc key. To exit Vim without saving changes press :q! followed by ENTER key.

    Getting more help about vim commands

    Want to learn vim text editor? Start the vim tutor by typing the following command at the Linux, macOS, and Unix-like system:
    $ vimtutor
    $ vimtutor it
    $ vimtutor fr

    vimtutor in action

    • No ads and tracking
    • In-depth guides for developers and sysadmins at Opensourceflare✨
    • Join my Patreon to support independent content creators and start reading latest guides:
      • How to set up Redis sentinel cluster on Ubuntu or Debian Linux
      • How To Set Up SSH Keys With YubiKey as two-factor authentication (U2F/FIDO2)
      • How to set up Mariadb Galera cluster on Ubuntu or Debian Linux
      • A podman tutorial for beginners – part I (run Linux containers without Docker and in daemonless mode)
      • How to protect Linux against rogue USB devices using USBGuard

    Join Patreon

    Summary of vim/vi commands

    Command Description
    Press the ESC key
    Type :q!
    Press the ENTER key
    Exit vim without saving changes i.e. discards any changes you made.
    Press the ESC key
    Type :wq
    Press the ENTER key
    Save a file and exit.
    Press the ESC key
    Type 😡
    Press the ENTER key
    Save a file and exit.

    Conclusion

    You learned how to save a file in vim and exit the text editor using various vim commands. See the vim site or the following pages for more information.

    🐧 Get the latest tutorials on Linux, Open Source & DevOps via

    Category List of Unix and Linux commands
    Documentation help • mandb • man • pinfo
    Disk space analyzers df • duf • ncdu • pydf
    File Management cat • cp • less • mkdir • more • tree
    Firewall Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04
    Linux Desktop Apps Skype • Spotify • VLC 3
    Modern utilities bat • exa
    Network Utilities NetHogs • dig • host • ip • nmap
    OpenVPN CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04
    Package Manager apk • apt
    Processes Management bg • chroot • cron • disown • fg • glances • gtop • jobs • killall • kill • pidof • pstree • pwdx • time • vtop
    Searching ag • grep • whereis • which
    Shell builtins compgen • echo • printf
    Text processing cut • rev
    User Information groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w
    WireGuard VPN Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04

    Comments on this entry are closed.

    w!= save without exiting
    q!= exit without saving

    To save and quit:
    If you are currently in insert or append mode, press Esc key.
    Press: (semi-colon) The cursor should reappear at the lower left corner of the screen beside a colon prompt.
    Enter the following command (type wq! and press Enter key).
    🙂

    Press: (colon) The cursor should reappear at the lower left corner of the screen beside a colon prompt.
    colon is right.

    none of these commands are working

    Hit the ‘esc’ key and it will take you out of the cursor mode and give you a cursor at the lower left hand of the screen. Now enter wq! and it will save and quit.

    Worked for me (Ubuntu 16.4). Thanks

    Thanks for sharing knowledge!
    Worked just perfectly!

    worked for me too on Ubuntu. thank you!

    The theme become so popular in the entire Www, so I’ve created fun page

    Источник

    How do I save changes in Vim?

    Commands to save changes in vim

    The procedure is as follows to save a file in Vim and quit the editor:

    1. Start vim by typing vim filename
    2. To insert text press i
    3. Now start editing text. Add new text or delete unwanted text.
    4. Press Esc key and type :w to save a file in vim.
    5. One can press Esc and type :wq to save changes to a file and exit from vim
    6. Another option is to press 😡

    Let us see all commands and examples in detail for a vim text editor.

    How to save a file in vim

    By default, vim is in command mode. In command mode, we can use vim commands and navigate/scroll around the file. Let us start vim text editor:
    vim filename
    vim is_mounted

    Say, you need type text or add additional program. So yo need to enter the insert mode by pressing the i key:

    Saving a file in vim

    Now we edited or added some text/code. Hence, it is the time to save changes in Vim by pressing Esc and typing :w followed by the Enter key.

    One can save the file under a different name:

    • Press ESC key.
    • Type :w My_fileName_here
    • Hit Enter key.

    In another words, it works as “Save as” feature. We can verify that the file has been saved using the cat command:
    cat is_mouted
    Sample outputs:

    Источник

    How to Exit a File in Vi / Vim Editor in Linux

    In this article, we will learn how to exit Vi/Vim (after referred to as Vim) text editor using simple commands. In a previous article, we explained a simple tip on how to save a file in Vi or Vim after making changes to a file.

    Before we move any further, if you are new to Vim, then we recommend reading through these 10 reasons why you should stick to using Vi/Vim text editor in Linux.

    To open or create a new file using Vi/Vim, simply type the commands below, then press i to switch to insert mode (insert text):

    Press ‘i’ to Insert Mode in Vim Editor

    After making changes to a file, press [Esc] to shift to the command mode and press :w and hit [Enter] to save a file.

    Save File in Vim

    To exit Vi/Vim, use the :q command and hit [Enter] .

    Exit File in Vi Editor

    To save a file and exit Vi/Vim simultaneously, use the :wq command and hit [Enter] or 😡 command.

    Save and Exit File in Vi

    If you make changes to a file but try to quite Vi/Vim using ESC and q key, you’ll receive an error as shown in the scrrenshot below.

    Vi Error Quitting File

    To force this action, use ESC and :q! .

    Force Quit Vi File in Linux

    Additionally, you can use shortcut methods. Press the [Esc] key and type Shift + Z Z to save and exit or type Shift+ Z Q to exit without saving the changes made to the file.

    Having learned the above commands, you can now proceed to learn advanced Vim commands from the links provided below:

    In this article, we learned how to exit Vim text editor using simple commands. Do you have any questions to ask or any thoughts to share? Please, use the feedback form below.

    If You Appreciate What We Do Here On TecMint, You Should Consider:

    TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.

    If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

    We are thankful for your never ending support.

    Источник

    Как сохранить файл в Vim / Vi и выйти из редактора

    How to Save a File in Vim / Vi and Quit the Editor

    В этом руководстве объясняется, как сохранить файл в Vim / Vi и выйти из редактора.

    Vim является предпочтительным текстовым редактором для многих пользователей, которые проводят много времени в командной строке. В отличие от других редакторов, Vim имеет несколько режимов работы, которые могут быть немного пугающими для новых пользователей.

    Vim или его предшественник Vi предустановлен на MacOS и почти во всех дистрибутивах Linux. Знание основ Vim поможет вам, когда вы столкнетесь с ситуацией, когда ваш любимый редактор недоступен.

    Vim режимы

    Когда вы запускаете редактор Vim, вы находитесь в обычном режиме. В этом режиме вы можете использовать команды vim и перемещаться по файлу.

    Чтобы набирать текст, нужно войти в режим вставки, нажав i клавишу. Этот режим позволяет вставлять и удалять символы так же, как в обычном текстовом редакторе .

    Чтобы вернуться в обычный режим из любого другого режима, просто нажмите Esc клавишу.

    Открыть файл в Vim / Vi

    Другой способ , чтобы открыть файл, чтобы запустить редактор и тип :e file_name , где file_name это имя файла , который вы хотите открыть.

    Сохранить файл в Vim / Vi

    Команда для сохранения файла в Vim есть :w .

    Чтобы сохранить файл без выхода из редактора, вернитесь в обычный режим, нажав Esc , введите :w и нажмите Enter .

    Существует также команда обновления :up , которая записывает буфер в файл, только если есть несохраненные изменения.

    Чтобы сохранить файл под другим именем, введите :w new_filename и нажмите Enter .

    Сохранить файл и выйти из Vim / Vi

    Команда для сохранения файла в Vim и выхода из редактора есть :wq .

    Чтобы сохранить файл и выйти из редактора одновременно, нажмите, Esc чтобы переключиться в обычный режим, введите :wq и нажмите Enter .

    Еще одна команда для сохранения файла и выхода из Vim 😡 .

    Разница между этими двумя командами заключается в том, 😡 что буфер записывается в файл только при наличии несохраненных изменений, тогда :wq как буфер всегда записывается в файл и обновляется время модификации файла.

    Выйти из Vim / Vi без сохранения файла

    Чтобы выйти из редактора, не сохраняя изменения, перейдите в обычный режим, нажав Esc , введите :q! и нажмите Enter .

    Вывод

    В этом руководстве мы показали, как сохранить файл в Vim и выйти из редактора. Если вы новичок в Vim, посетите сайт Open Vim, где вы можете попрактиковаться в Vim с помощью интерактивного учебного пособия.

    Источник

    Читайте также:  Удаленное включение компьютера по сети windows 10
    Оцените статью