System Programming CHP 2
System Programming CHP 2
You can use 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.
Command Description
vi filename Creates a new file if it already does not exist, otherwise opens
existing file.
Following is the example to create a new file testfile if it already does not
exist in the current working directory −
Prepared by Viswanathan M
$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 nonviewable
character present.
So now you have opened one file to start with. Before proceeding further let
us understanding few minor but important concepts explained below.
Operation Modes
While working with vi editor you would come across following two modes −
Prepared by Viswanathan M
• Insert mode − This mode enables you to insert text into the file. Everything
that's typed in this mode is interpreted as input and finally it is put in the file .
• Hint − If you are not sure which mode you are in, press the Esc key
twice, and then you'll be in command mode. You open a file using vi
editor and start type some characters and then come in command
mode to understand the difference.
Getting Out of vi
The command to quit out of vi is :q. Once in 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 :wq and return.
The easiest way to save your changes and exit out of vi is the ZZ command.
When you are in command mode, type ZZ and it will do the equivalent of
:wq.
You can specify a different file name to save to by specifying the name after
the :w. For example, if you wanted to save the file you were working as
another filename called filename2, you would type :w filename2 and
return. Try it once.
Prepared by Viswanathan M
Command Description
• Most commands in vi can be prefaced by the number of times you want the
action to occur. For example, 2j moves 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 command mode (press Esc twice). Here are some more
commands you can use to move around the file −
Command Description
Prepared by Viswanathan M
( Positions cursor to beginning of current sentence.
fc Move forward to c
Fc Move back to c
Prepared by Viswanathan M
nH Moves to nth line from the top of the screen
Control Commands
There are following useful command which you can use along with Control
Key −
Command Description
Prepared by Viswanathan M
CTRL+d Moves screen down 1/2 page
Editing Files
To edit the file, you need to be in the insert mode. There are many ways to
enter insert mode from the command mode −
Command Description
Prepared by Viswanathan M
Deleting Characters
Here is the list of important commands which can be used to delete
characters and lines in an opened file −
Command Description
Change Commands
Prepared by Viswanathan M
You also have the capability to change characters, words, or lines in vi
without deleting them. Here are the relevant commands −
Command Description
S Deletes the line the cursor is on and replaces with new text. After
the new text is entered, vi remains in insert mode.
Command Description
Prepared by Viswanathan M
p Puts the copied text after the cursor.
Advanced Commands
There are some advanced commands that simplify day-to-day editing and
allow for more efficient use of vi −
Command Description
J Join the current line with the next one. A count joins that many
lines.
<< Shifts the current line to the left by one shift width.
>> Shifts the current line to the right by one shift width.
^G Press CNTRL and G keys at the same time to show the current
filename and the status.
U Restore the current line to the state it was in before the cursor
entered the line.
u Undo the last change to the file. Typing 'u' again will re-do the
change.
J Join the current line with the next one. A count joins that many
lines.
Prepared by Viswanathan M
:f Displays current position in the file in % and file name, total
number of file.
:n In case you open multiple files using vi, use :n to go to next file
in the series.
These two commands differ only in the direction where the search takes
place −
Prepared by Viswanathan M
• The / command searches forwards (downwards) in the file.
The n and N commands repeat the previous search command in the same
or opposite direction, respectively. Some characters have special meanings
while using in search command and preceded by a backslash (\) to be
included as part of the search expression.
Character Description
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.
Prepared by Viswanathan M
Set Commands
You can change the look and feel of your vi screen using the
following :setcommands. To use these commands you have to come in
command mode then type :set followed by any of the following options −
Command Description
: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
:set ws If wrapscan is set, if the word is not found at the bottom of the
file, it will try to search for it at the beginning.
: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
Running Commands
Prepared by Viswanathan M
The vi has the capability to run commands from within the editor. To run a
command, you only need to go into command mode and type :! command.
For example, if you want to check whether a file exists before you try to
save your file to that filename, you can type :! ls and you will see the
output of ls on the screen.
When you press any key (or the command's escape sequence), you are
returned to your vi session.
Replacing Text
The substitution command (:s/) enables you to quickly replace words or
groups of words within your files. Here is the simple syntax −
: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.
IMPORTANT
Here are the key points to your success with vi −
• You must be in command mode to use commands. (Press Esc twice at any time
to ensure that you are in command mode.)
• You must be careful to use the proper case (capitalization) for all commands.
Prepared by Viswanathan M