Article Title:: copy and paste in LinuxVI editor. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
The most headache for Linux Server Management is the configuration of configuration files.
In general, the configuration file provides an example. When modifying the configuration file, it is best to keep the sample site properly. Copy the sample part and modify it. In this way, even if an error is modified, the error can be found in a timely manner through the comparison example.
Copy and paste the entire line (multiple lines) in the vi editor.
1. Copy
1) Single Row Replication
In command mode, move the cursor to the row to be copied and press "yy" to copy the cursor;
2) multi-row Replication
In command mode, move the cursor to the first line to be copied, and press "nyy" to copy n lines, where n is 1, 2, 3 ......
2. Paste
In command mode, move the cursor to the row to be pasted and press "p" to paste it.