Unix/Linux - The Vi Editor Tutorial
Unix/Linux - The Vi Editor Tutorial
Advertisements
In this chapter, we will understand how the vi Editor works in Unix. There are many ways to edit files in Unix. Editing
files using the screen-oriented text editor vi is one of the best ways. This editor enables you to edit lines in context with
other lines in the file.
An improved version of the vi editor which is called the VIM has also been made available now. Here, VIM stands for
Vi IMproved.
You can use the vi editor to edit an existing file or to create a new file from scratch. You can also use this editor to just
read a text file.
1
vi filename
Creates a new file if it already does not exist, otherwise opens an existing file.
2
vi -R filename
3
view filename
Following is an example to create a new file testfile if it already does not exist in the current working directory −
$vi testfile
|
~
~
~
~
~
~
~
~
~
~
~
~
"testfile" [New File]
You will notice a tilde (~) on each line following the cursor. A tilde represents an unused line. If a line does not begin
with a tilde and appears to be blank, there is a space, tab, newline, or some other non-viewable character present.
You now have one open file to start working on. Before proceeding further, let us understand a few important concepts.
Operation Modes
While working with the vi editor, we usually come across the following two modes −
Command mode − This mode enables you to perform administrative tasks such as saving the files, executing the
commands, moving the cursor, cutting (yanking) and pasting the lines or words, as well as finding and replacing.
In this mode, whatever you type is interpreted as a command.
Insert mode − This mode enables you to insert text into the file. Everything that's typed in this mode is
interpreted as input and placed in the file.
vi always starts in the command mode. To enter text, you must be in the insert mode for which simply type i. To come
out of the insert mode, press the Esc key, which will take you back to the command mode.
Hint − If you are not sure which mode you are in, press the Esc key twice; this will take you to the command mode.
You open a file using the vi editor. Start by typing some characters and then come to the command mode to understand
the difference.
Getting Out of vi
The command to quit out of vi is :q. Once in the command mode, type colon, and 'q', followed by return. If your file
has been modified in any way, the editor will warn you of this, and not let you quit. To ignore this message, the
command to quit out of vi without saving is :q!. This lets you exit vi without saving any of the changes.
The command to save the contents of the editor is :w. You can combine the above command with the quit command, or
use :wq and return.
The easiest way to save your changes and exit vi is with the ZZ command. When you are in the command mode, type
ZZ. The ZZ command works the same way as the :wq command.
If you want to specify/state any particular name for the file, you can do so by specifying it after the :w. For example, if
you wanted to save the file you were working on as another filename called filename2, you would type :w filename2
and return.
1
k
3
h
4
l
vi is case-sensitive. You need to pay attention to capitalization when using the commands.
Most commands in vi can be prefaced by the number of times you want the action to occur. For example, 2j
moves the cursor two lines down the cursor location.
There are many other ways to move within a file in vi. Remember that you must be in the command mode (press Esc
twice). The following table lists out a few commands to move around the file −
1
0 or |
2
$
3
w
4
b
5
(
7
E
8
{
9
}
10
[[
11
]]
12
n|
13
1G
14
G
15
nG
16
:n
Moves forward to c
18
Fc
Moves back to c
19
H
20
nH
21
M
22
L
23
nL
24
:x
Colon followed by a number would position the cursor on the line number represented by x
Control Commands
The following commands can be used with the Control Key to performs functions as given in the table below −
1
CTRL+d
3
CTRL+u
4
CTRL+b
5
CTRL+e
6
CTRL+y
7
CTRL+u
8
CTRL+d
9
CTRL+b
10
CTRL+f
11
CTRL+I
Editing Files
To edit the file, you need to be in the insert mode. There are many ways to enter the insert mode from the command
mode −
Sr.No. Command & Description
1
i
2
I
3
a
4
A
5
o
Creates a new line for text entry below the cursor location
6
O
Creates a new line for text entry above the cursor location
Deleting Characters
Here is a list of important commands, which can be used to delete characters and lines in an open file −
1
x
2
X
3
dw
Deletes from the current cursor position to the beginning of the line
5
d$
Deletes from the current cursor position to the end of the line
6
D
Deletes from the cursor position to the end of the current line
7
dd
As mentioned above, most commands in vi can be prefaced by the number of times you want the action to occur. For
example, 2x deletes two characters under the cursor location and 2dd deletes two lines the cursor is on.
Change Commands
You also have the capability to change characters, words, or lines in vi without deleting them. Here are the relevant
commands −
1
cc
2
cw
Changes the word the cursor is on from the cursor to the lowercase w end of the word.
3
r
Replaces the character under the cursor. vi returns to the command mode after the replacement is entered.
4
R
Overwrites multiple characters beginning with the character currently under the cursor. You must use Esc
to stop the overwriting.
5
s
Replaces the current character with the character you type. Afterward, you are left in the insert mode.
6
S
Deletes the line the cursor is on and replaces it with the new text. After the new text is entered, vi remains
in the insert mode.
1
yy
2
yw
Copies the current word from the character the lowercase w cursor is on, until the end of the word.
3
p
4
P
Advanced Commands
There are some advanced commands that simplify day-to-day editing and allow for more efficient use of vi −
1
J
Joins the current line with the next one. A count of j commands join many lines.
2
2
<<
3
>>
4
~
5
^G
Press Ctrl and G keys at the same time to show the current filename and the status.
6
U
Restores the current line to the state it was in before the cursor entered the line.
7
u
This helps undo the last change that was done in the file. Typing 'u' again will re-do the change.
8
J
Joins the current line with the next one. A count joins that many lines.
9
:f
Displays the current position in the file in % and the file name, the total number of file.
10
:f filename
11
:w filename
12
:e filename
13
13
:cd dirname
14
:e #
15
:n
In case you open multiple files using vi, use :n to go to the next file in the series.
16
:p
In case you open multiple files using vi, use :p to go to the previous file in the series.
17
:N
In case you open multiple files using vi, use :N to go to the previous file in the series.
18
:r file
19
:nr file
These two commands differ only in the direction where the search takes place −
The n and N commands repeat the previous search command in the same or the opposite direction, respectively. Some
characters have special meanings. These characters must be preceded by a backslash (\) to be included as part of the
search expression.
1
^
Searches at the beginning of the line (Use at the beginning of a search expression).
2
.
3
*
4
$
5
[
6
<
This is put in an expression escaped with the backslash to find the ending or the beginning of a word.
7
>
The character search searches within one line to find a character entered after the command. The f and F commands
search for a character on the current line only. f searches forwards and F searches backwards and the cursor moves to the
position of the found character.
The t and T commands search for a character on the current line only, but for t, the cursor moves to the position before
the character, and T searches the line backwards to the position after the character.
Set Commands
You can change the look and feel of your vi screen using the following :set commands. Once you are in the command
mode, type :set followed by any of the following commands.
1
:set ic
2
:set ai
Sets autoindent
3
:set noai
Unsets autoindent
4
:set nu
5
:set sw
Sets the width of a software tabstop. For example, you would set a shift width of 4 with this command —
:set sw = 4
6
:set ws
If wrapscan is set, and the word is not found at the bottom of the file, it will try searching for it at the
beginning
7
:set wm
If this option has a value greater than zero, the editor will automatically "word wrap". For example, to set
the wrap margin to two characters, you would type this: :set wm = 2
8
:set ro
9
:set term
10
:set bf
Running Commands
The vi has the capability to run commands from within the editor. To run a command, you only need to go to the
command mode and type :! command.
For example, if you want to check whether a file exists before you try to save your file with that filename, you can type
:! ls and you will see the output of ls on the screen.
You can press any key (or the command's escape sequence) to return to your vi session.
Replacing Text
The substitution command (:s/) enables you to quickly replace words or groups of words within your files. Following is
the syntax to replace text −
:s/search/replace/g
The g stands for globally. The result of this command is that all occurrences on the cursor's line are changed.
You must be in command mode to use the commands. (Press Esc twice at any time to ensure that you are in
command mode.)