


What is the command to exit the vi editor in Linux?
Linux command to exit the vi editor: 1. Use the ":wq" or ":x" or "ZZ" command to save and exit; 2. Use the ":q" command to exit normally; use ":q!" can exit without saving; 4. Use ":!" to force exit.
#The operating environment of this tutorial: Red Hat Enterprise Linux 6.1 system, Dell G3 computer.
In Linux, the vim editor is the text editor that comes with the system. However, modifying a text file is not like Windows. Even newbies cannot exit the vi editor after entering it. As for forced shutdown, in fact, this vim (vi) is also very simple.
1. Enter the vim editor
vim editor. You can create new files or modify files. The command is: vim /usr/local /con.cfg
If this file did not exist before, it will be newly created, and there will be a prompt below that it is a new file. If the file already exists, there will be no prompt.
After entering the editor, we first press "i" to switch to the "insert" state. You can edit content by moving the cursor up, down, left, and right, space, backspace, and enter, just like Windows.
2. Methods and differences in exiting the vim editor
After text editing is completed, you usually need to exit the editor. Divided into 4 situations: save and exit, normal exit, exit without saving and forced exit.
① Save and exit
When we have edited or modified the file content, of course we have to save and exit and then proceed to the next step. At this time, we have to press "ESC" in the upper left corner of the keyboard. Did you notice? The insert state in the lower left corner is gone, and now we have entered the command mode
Then, we enter a "colon", that is, ":" (without double quotes), and a colon will appear below, Wait for the input command, enter "wq", the function is as follows:
w: write, write
q: quit, exit
and press Enter to save and exit. In fact, there are two ways to save and exit:
A: When entering the last command, directly enter "x", which is the same, that is: x=wq.
B: The fastest way: after pressing ESC, directly press shift zz or switch to uppercase mode and press ZZ to save and exit, that is, press the uppercase Z twice.
We can use the view command cat to view its content: cat /usr/local/con.cfg.
② Normal exit
There is a prerequisite for normal exit: the content of the open text file has not been changed. Press ESC and then enter "colon". When entering commands, enter "q" directly.
③ Exit without saving
Many times I open a file or modify some places, only to find something wrong and need to exit without saving. Press ESC first, then enter "colon". When entering the command, enter "q!" directly.
④ Force exit
For less commonly used operations, press ESC first, then press "colon". When entering a command, directly enter "!" and exit. , there will be a prompt!
Note: Linux commands must be lowercase!
Related recommendations: "Linux Video Tutorial"
The above is the detailed content of What is the command to exit the vi editor in Linux?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Have problems uploading files in Google Chrome? This may be annoying, right? Whether you are attaching documents to emails, sharing images on social media, or submitting important files for work or school, a smooth file upload process is crucial. So, it can be frustrating if your file uploads continue to fail in Chrome on Windows PC. If you're not ready to give up your favorite browser, here are some tips for fixes that can't upload files on Windows Google Chrome 1. Start with Universal Repair Before we learn about any advanced troubleshooting tips, it's best to try some of the basic solutions mentioned below. Troubleshooting Internet connection issues: Internet connection

To manage Linux user groups, you need to master the operation of viewing, creating, deleting, modifying, and user attribute adjustment. To view user group information, you can use cat/etc/group or getentgroup, use groups [username] or id [username] to view the group to which the user belongs; use groupadd to create a group, and use groupdel to specify the GID; use groupdel to delete empty groups; use usermod-aG to add users to the group, and use usermod-g to modify the main group; use usermod-g to remove users from the group by editing /etc/group or using the vigr command; use groupmod-n (change name) or groupmod-g (change GID) to modify group properties, and remember to update the permissions of relevant files.

In Linux systems, 1. Use ipa or hostname-I command to view private IP; 2. Use curlifconfig.me or curlipinfo.io/ip to obtain public IP; 3. The desktop version can view private IP through system settings, and the browser can access specific websites to view public IP; 4. Common commands can be set as aliases for quick call. These methods are simple and practical, suitable for IP viewing needs in different scenarios.

Linuxcanrunonmodesthardwarewithspecificminimumrequirements.A1GHzprocessor(x86orx86_64)isneeded,withadual-coreCPUrecommended.RAMshouldbeatleast512MBforcommand-lineuseor2GBfordesktopenvironments.Diskspacerequiresaminimumof5–10GB,though25GBisbetterforad

As a pioneer in the digital world, Bitcoin’s unique code name and underlying technology have always been the focus of people’s attention. Its standard code is BTC, also known as XBT on certain platforms that meet international standards. From a technical point of view, Bitcoin is not a single code style, but a huge and sophisticated open source software project. Its core code is mainly written in C and incorporates cryptography, distributed systems and economics principles, so that anyone can view, review and contribute its code.

To enable PHP containers to support automatic construction, the core lies in configuring the continuous integration (CI) process. 1. Use Dockerfile to define the PHP environment, including basic image, extension installation, dependency management and permission settings; 2. Configure CI/CD tools such as GitLabCI, and define the build, test and deployment stages through the .gitlab-ci.yml file to achieve automatic construction, testing and deployment; 3. Integrate test frameworks such as PHPUnit to ensure that tests are automatically run after code changes; 4. Use automated deployment strategies such as Kubernetes to define deployment configuration through the deployment.yaml file; 5. Optimize Dockerfile and adopt multi-stage construction

The shutdown command of Linux/macOS can be shut down, restarted, and timed operations through parameters. 1. Turn off the machine immediately and use sudoshutdownnow or -h/-P parameters; 2. Use the time or specific time point for the shutdown, cancel the use of -c; 3. Use the -r parameters to restart, support timed restart; 4. Pay attention to the need for sudo permissions, be cautious in remote operation, and avoid data loss.

Building an independent PHP task container environment can be implemented through Docker. The specific steps are as follows: 1. Install Docker and DockerCompose as the basis; 2. Create an independent directory to store Dockerfile and crontab files; 3. Write Dockerfile to define the PHPCLI environment and install cron and necessary extensions; 4. Write a crontab file to define timing tasks; 5. Write a docker-compose.yml mount script directory and configure environment variables; 6. Start the container and verify the log. Compared with performing timing tasks in web containers, independent containers have the advantages of resource isolation, pure environment, strong stability, and easy expansion. To ensure logging and error capture
