from small one page howto to huge articles all in one place
 

search text in:







Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

3784

userrating:

no votes yet


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->VI

3. Practice Lesson #1


You should have a practice file called vilesson.txt in
your home directory. We will use it now:


$ vi vilesson.txt

Please note that in this lesson we will only practice the very
basics of vi. It is up to you to explore the editor further using
the provided cheat-sheet.


General Rules



  1. Do not use arrow keys to move the cursor
  2. Do not use PgDn or PgUp keys
  3. Do not use Home or End keys

If you accidently violate any of the above rules and cause strange
characters to be inserted into the file, or if anything else
unexpected happens, and you don't know how to correct it, press
Escape followed with :q! (quit without
saving
command). Then open the file again and continue the
lesson.


All exercises in Practice Lesson #1 consist of
Actions (marked here as A:) and Verifications
(marked here as V:).


Moving Around Text


First we will move around the file line by line.



A:
Press j three times.
V:
Cursor should now be resting on the fourth line.
A:
Type 8j
V:
Cursor should have moved 8 lines down to "Mr. John Bigfoot".
A:
Go up 2 lines by pressing k twice. Now go up 7 more
lines using the combination of a number and the k command.
V:
Your cursor should be on the "Big Town" line.

There is a way to move to a specific line number.



A:
Type :set number and press Enter key.
V:
Line numbers should be displayed at the left margin.
A:
Type 33G
V:
Your cursor should be resting at line #33.
A:
Type :set nonumber
V:
Line numbers should disappear.
A:
Go to the first line in the file by typing 1G (as in
line #1, GO).
V:
Your cursor should be at the top of the file.
A:
To go to the last line in the file, you do not need to specify
the line number at all (it would often be inconvenient). Type
G
V:
Cursor should be at the last line of the file.

To move sideways we will use command l (letter el)
to move right, and command h to move left. First go
back to the beginning of the line "40 PR Special (Pink Squirrel)".
When you're done, continue with the exercise.



A:
Press l three times.
V:
Cursor should be on character "P".
A:
Type 10l (number 10 followed by letter el)
V:
Cursor should be resting on white space between words "Special"
and "Pink".
A:
Press h twice.
V:
Cursor should be on character "a" of the letter "Special".
A:
Now go directly to the end of the line by pressing $
(dollar sign).
V:
Cursor should be at the end of the line.
A:
Go back to the beginning of the line by pressing 0 (zero).
V:
Cursor should be at the beginning of the line.

We can also move using words, sentences and paragraphs as delimiters.
First make sure your cursor is still at the beginning of the line
"40 PR Special (Pink Squirrel)".



A:
Press w (as in word) twice.
V:
Cursor should be at the beginning of the word "Special".
A:
Type 3w
V:
Cursor should be at the beginning of the word "Squirrel".
Note that vi knows that "(" is not a part of the word, and it
counts those elements separately.
A:
Go two paragraphs down by pressing 2} (right curly
brace).
V:
Cursor should be resting before the beginning of the
paragraph "We are looking forward [...]"
A:
Go to the previous sentence by pressing ( (left
parenthesis).
V:
Cursor should be on the word "We". Note:
Using sentences as delimiters is known to be broken in a couple
of vi implementations.
A:
Move to the end of the word by pressing e (as in end
of the word
).
V:
Cursor should be resting on the letter "e".
A:
To move one page forward, press Ctrl-F
V:
Depending on your terminal definition, the cursor should have
moved an appropriate number of lines forward. In our case, since
the file is short, you are most likely at the last line.
A:
Press Ctrl-B to go back one page.
V:
Cursor should have moved up one terminal page. Note:
On some older DOS versions of vi this command might scroll up the
page without moving the cursor. If this happens to you, press
Ctrl-B again.

Searching


Make sure your cursor is at the top of the file, then proceed
with the exercise.



A:
Press /, type your and press Enter
V:
Cursor should be on the word "your" in the middle of the sentence
"Thank you for placing your order with us".
A:
Press n (for 'next').
V:
Cursor should be on the word "your" before words "March 25".
A:
Press G to go to the end of the file.
V:
Cursor should be at the bottom of the file.
A:
Press ?, type ( and press Enter
V:
Your cursor should be on the left parenthesis before the word
"Moscow".

Deleting, Copying, And Pasting


We will practice commands d (delete),
p and P (paste), and the command
. (period, which means repeat last edit).
Make sure your cursor is still on the left paren before the word
"Moscow".



A:
Type d$
V:
You have just asked to delete to the end of line: d for
delete and $ for end of line (to
indicate the scope of the operation). Entire description of the
"Stock Option" drink should have disappeared.
A:
Press n to find the next instance of "(" (that was
our last search).
V:
Cursor should be on the left paren before the word "Ping-Pong".
A:
Repeat the previous edit (delete to end of the line) by pressing
. (period).
V:
Description of the "Day in TAC" drink should have disappeared.
A:
Press n again followed by . (period).
V:
Description of the "PR Special" drink should have disappeared.
A:
Repeat the last operation.
V:
All of the descriptions of the drinks (please ignore the fact that
some of them are intentionally wrong) should be gone.
A:
Exit the file without saving it by typing command :q!
V:
You should be at the UNIX shell command prompt.

Bring the file back into the editor with the command:



$ vi vilesson.txt

By now you have noticed that one of the drinks is really an appetizer.
We need to move it into the right place.



A:
Type /Early and press Enter
V:
Cursor should be on the line with "Early Release".
A:
Delete the whole line by pressing d twice.
V:
Line should be gone.
A:
Press P (upper case).
V:
The line you deleted is pasted above "Sales Engineer Special".
A:
Now press u for undo, remember which line
your cursor is on and then press p (lowercase).
V:
The line you deleted is pasted below your cursor line.

Note that uppercase P pastes text above the cursor line,
lowercase p pastes below.


If you only wish to copy the original line(s) without deleting at
the same time, use the yank command.



A:
Move you cursor to the second line, type 3Y, move your
cursor all the way down by pressing G and press
p
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now press u to undo the changes.
V:
The lines you have pasted should have disappeared.

The above operation could also be accomplished using lowercase
yank and the symbol for the object to be copied.



A:
Move your cursor back to line 2. Type commands y}Gp
V:
Lines 2, 3, and 4 should have been pasted under "Tony Thomas".
A:
Now undo the changes.
V:
The lines you have pasted should have disappeared.

Replacing Text


You have just noticed that the name of the addressee is spelled
"Bigfoot". It should be "Bigshot". You will now globally change
it.



A:
Press : (vi command line), type
%s/Bigfoot/Bigshot/g and press Enter
V:
All instances of "Bigfoot" should have changed to "Bigshot".

What you have typed means command line (:), the whole
file
(%), substitute (s), Bigfoot with Bigshot
(/Bigfoot/Bigshot/), any occurance on a line (g). Without
the last g, the substitution would be performed only
once per line. In our case it would not make any difference, but
it is a cheap insurance to take. The character % at
the beginning of the command means literally from the first to
the last line
. You could specify a narrower range of lines.
:13,19s/Bigfoot/Bigshot/ would perform the substitution
on a range of lines 13 through 19.


It is possible to replace specific number of words with whatever
text we wish to type in.



A:
Press / and then type send and press
Enter. Now type cw (for change word),
type be delivering and press Escape
V:
The word "send" should have been replaced with "be delivering".
Note that only the word "send" was replaced.

You could also specify
multiple words to be replaced, for example c3w. This
has a distinct advantage over more conventional overwriting because
it has clear word-boundary delimiters.


Overwriting one character, however, can be useful as a quick
correction. Note that the word "Febeuary" is misspelled.



A:
Place your cursor on the second "e" in that word and press r
twice.
V:
The word "Febeuary" should now read "February".

The first time you pressed r above it meant replace,
the second time with letter r. You do not need to finish
the command with Escape because there is an understanding
that only one letter will be input. This was single-letter
overwriting. Should you wish to overwrite continuously, you would
use the letter R instead. You would also need to finish
the command by pressing Escape since the number of
characters to be overwritten is not pre-determined.


Changing Case


Notice that the word "serVEd" has improperly capitalized two letters.



A:
Go to the word "serVEd", place your cursor over the first miscapitalized
letter and press ~ (tilde) twice.
V:
The word should now read "served".

Saving Files


It is time to save the changes.



A:
Press : (for command line), type w
(for write) and press Enter
V:
The changes have been saved. There could be a one-line note at
the bottom of the screen saying, "vilesson.txt: 48 lines, 954
characters" (or something similar) to confirm a successful save.

There are other ways to save files, so please read the cheat-sheet
for the command summary.


Inserting Text


There are three parts to entering text:



  1. input command (A, I, O, R, a, c, i, o)
  2. text to be inserted (anything you wish)
  3. termination of input command (Escape key)

The third part is always the same. All text input commands
listed above are terminated with Escape key. Part one
is where the variation occurs.



A:
Move the cursor to the beginning of line 38. Press i
and start typing text. When you finish the sentence, press
Escape.
V:
As you have noticed, i inserts text before the
letter the cursor rests on.

To enter text after the cursor, you would use a
(append) command. Now move your cursor to the second line
in the table listing drinks to be delivered.



A:
Press o.
V:
A new blank line should have been opened below the cursor line.
A:
Type some text. Press Escape.
V:
Text should have been entered on the blank line.
A:
Press u.
V:
Text you entered should have disappeared.
A:
Now press capital O, type some text and press
Escape.
V:
Text should have been entered on the line above the former cursor
line.

Note that the capitalized version of the same command opens the
line for text input above the cursor line. Note similarities
to the p and P commands. Press u.


Make sure you are approximately in the middle of the line of text (any
line).



A:
Press I (the capitalized version of the insert
command). Start typing text. Press Escape.
V:
Text should have been entered at the beginning of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.
A:
Now press A (the capitalized version of the append
command, type some text and terminate the command.
V:
Text should have been appended to the end of the line.
A:
Press u to undo changes.
V:
Text you entered should have disappeared.

Exiting file


You can exit file with or without saving changes.



A:
To save and exit, type :wq and press Enter.
V:
File has been saved and you should be at the UNIX command prompt.
A:
Open the file using vi vileson.txt and make some
changes (if you are entering text, please remember to terminate
the text input command with Escape). Type :q
and press Enter.
V:
Normally that would allow you to quit file, but since you have
changed the file, vi most likely will ask you to either save or
use bang (! command) to overwrite the protection.
A:
Type :q! and press Enter.
V:
You should be back at the UNIX command prompt.

Note that bang also works in conjunction with :w
and :wq commands.


End Of Practice Lesson #1



/* The article above and any accompanying files are freely
* distributable, but please leave this notice and the text intact.
* Home for this document: http://www.infobound.com/vi.html
* Copyright (C) 1994, 1999 Tony Thomas
* Contact author through email:
tony@infobound.com
* Last revision Feb 23, 1999
* UNIX is a trademark of X/Open
*/

rate this article:
current rating: no votes yet
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back
comment this article
Please read "Why adblockers are bad".



to the forum.
:
:
other Ads
Stellenangebote
Stellenangebote
für Fach- und
Führungskräfte
www.nachoben.com
Trace My Cash
Wenn Sie sich schon immer mal gefragt haben, wo eigentlich Ihr geliebtes Bargeld geblieben ist, finden Sie hier vielleicht die Antwort.
www.tracemycash.com
Other free services
toURL.org
Shorten long
URLs to short
links like
http://tourl.org/2
tourl.org
.
FeedCollector
Combine various newsfeeds to one customized webpage
www.feedcollector.org
.
Reverse DNS lookup
Find out which hostname(s)
resolve to a
given IP or other hostnames for the server
www.reversednslookup.org

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2008-11-21
bash - 3.2_p48
Ebuild name:

app-shells/bash-3.2_p48

Description

The standard GNU Bourne again shell

Added to portage

2008-11-21

busybox - 1.12.2-r1
Ebuild name:

sys-apps/busybox-1.12.2-r1

Description

Utilities for rescue and embedded systems

Added to portage

2008-11-21

checkrestart - 0.47
Ebuild name:

app-admin/checkrestart-0.47

Description

the sysadmin's rolling upgrade tool

Added to portage

2008-11-21

kicker - 3.5.10-r1
Ebuild name:

kde-base/kicker-3.5.10-r1

Description

Kicker is the KDE application starter panel, also capable of some useful

Added to portage

2008-11-21

lightning - 0.9
Ebuild name:

x11-plugins/lightning-0.9

Description

Calendar extension for Mozilla Thunderbird.

Added to portage

2008-11-21

mozilla-thunderbird - 2.0.0.18
Ebuild name:

mail-client/mozilla-thunderbird-2.0.0.18

Description

Thunderbird Mail Client

Added to portage

2008-11-21

w_scan - 20081106
Ebuild name:

media-tv/w_scan-20081106

Description

Scan for DVB-C/DVB-T channels without prior knowledge of frequencies and m

Added to portage

2008-11-21

xfce4-timer - 0.6.1
Ebuild name:

xfce-extra/xfce4-timer-0.6.1

Description

Timer panel plugin

Added to portage

2008-11-21

2008-11-20
Text-Markdown - 1.0.24
Ebuild name:

dev-perl/Text-Markdown-1.0.24

Description

Convert MultiMarkdown syntax to (X)HTML

Added to portage

2008-11-20

XML-SAX-Writer - 0.52
Ebuild name:

dev-perl/XML-SAX-Writer-0.52

Description

SAX2 Writer

Added to portage

2008-11-20

aria2 - 1.0.0
Ebuild name:

net-misc/aria2-1.0.0

Description

A download utility with resuming and segmented downloading with HTTP/HTTPS/FTP

Added to portage

2008-11-20

ati-drivers - 8.552-r2
Ebuild name:

x11-drivers/ati-drivers-8.552-r2

Description

Ati precompiled drivers for recent chipsets

Added to portage

2008-11-20

bind - 9.4.3
Ebuild name:

net-dns/bind-9.4.3

Description

BIND - Berkeley Internet Name Domain - Name Server

Added to portage

2008-11-20

bind-tools - 9.4.3
Ebuild name:

net-dns/bind-tools-9.4.3

Description

bind tools: dig, nslookup, host, nsupdate, dnssec-keygen

Added to portage

2008-11-20

conntrack-tools - 0.9.8-r1
Ebuild name:

net-firewall/conntrack-tools-0.9.8-r1

Description

Connection tracking userspace tools

Added to portage

2008-11-20

cutils - 1.6-r3
Ebuild name:

dev-util/cutils-1.6-r3

Description

C language utilities

Added to portage

2008-11-20

cyphesis - 0.5.17
Ebuild name:

games-server/cyphesis-0.5.17

Description

WorldForge server running small games

Added to portage

2008-11-20

evince - 2.24.1
Ebuild name:

app-text/evince-2.24.1

Description

Simple document viewer for GNOME

Added to portage

2008-11-20

galleryadd - 2.30
Ebuild name:

media-gfx/galleryadd-2.30

Description

Perl script to recursively adds directories/images to Gallery

Added to portage

2008-11-20

git-sources - 2.6.28_rc5-r4
Ebuild name:

sys-kernel/git-sources-2.6.28_rc5-r4

Description

The very latest -git version of the Linux kernel

Added to portage

2008-11-20

glabels - 2.2.3
Ebuild name:

app-office/glabels-2.2.3

Description

Program for creating labels and business cards

Added to portage

2008-11-20

glade-sharp - 9999
Ebuild name:

dev-dotnet/glade-sharp-9999

Description

Dummy ebuild to understand the package move to gtk-sharp[glade]

Added to portage

2008-11-20

gmime - 2.4.3
Ebuild name:

dev-libs/gmime-2.4.3

Description

Utilities for creating and parsing messages using MIME

Added to portage

2008-11-20

gnustep-base - 1.16.5
Ebuild name:

gnustep-base/gnustep-base-1.16.5

Description

A library of general-purpose, non-graphical Objective C objects.

Added to portage

2008-11-20

gtk-sharp - 2.12.6
Ebuild name:

dev-dotnet/gtk-sharp-2.12.6

Description

Gtk is a C language binding for the GTK2 toolkit and GNOME libraries

Added to portage

2008-11-20

gtkhtml - 3.24.1.1
Ebuild name:

gnome-extra/gtkhtml-3.24.1.1

Description

Lightweight HTML Rendering/Printing/Editing Engine

Added to portage

2008-11-20

kvm - 79
Ebuild name:

app-emulation/kvm-79

Description

Kernel-based Virtual Machine userland tools

Added to portage

2008-11-20

libgdiplus - 2.0
Ebuild name:

dev-dotnet/libgdiplus-2.0

Description

Library for using System.Drawing with mono

Added to portage

2008-11-20

libnotify - 0.4.5
Ebuild name:

x11-libs/libnotify-0.4.5

Description

Notifications library

Added to portage

2008-11-20

lilypond - 2.11.64
Ebuild name:

media-sound/lilypond-2.11.64

Description

GNU Music Typesetter

Added to portage

2008-11-20

lv2core - 3.0
Ebuild name:

media-libs/lv2core-3.0

Description

LV2 is a simple but extensible successor of LADSPA

Added to portage

2008-11-20

mono - 2.0.1
Ebuild name:

dev-lang/mono-2.0.1

Description

Mono runtime and class libraries, a C compiler/interpreter

Added to portage

2008-11-20

mono-basic - 2.0
Ebuild name:

dev-lang/mono-basic-2.0

Description

Visual Basic .NET Runtime and Class Libraries

Added to portage

2008-11-20

mono-debugger - 2.0
Ebuild name:

dev-util/mono-debugger-2.0

Description

Debugger for .NET managed and unmanaged applications

Added to portage

2008-11-20

mono-tools - 2.0
Ebuild name:

dev-util/mono-tools-2.0

Description

Set of useful Mono related utilities

Added to portage

2008-11-20

monodoc - 2.0
Ebuild name:

dev-util/monodoc-2.0

Description

Documentation for mono's .Net class library

Added to portage

2008-11-20

mozilla-thunderbird-bin - 2.0.0.18
Ebuild name:

mail-client/mozilla-thunderbird-bin-2.0.0.18

Description

Thunderbird Mail Client

Added to portage

2008-11-20

multitalk - 1.4
Ebuild name:

app-office/multitalk-1.4

Description

A new type of presentation program

Added to portage

2008-11-20

notification-daemon - 0.3.7-r1
Ebuild name:

x11-misc/notification-daemon-0.3.7-r1

Description

Notifications daemon

Added to portage

2008-11-20

quilt - 0.47-r1
Ebuild name:

dev-util/quilt-0.47-r1

Description

quilt patch manager

Added to portage

2008-11-20

quota - 3.16
Ebuild name:

sys-fs/quota-3.16

Description

Linux quota tools

Added to portage

2008-11-20

slv2 - 0.6.1
Ebuild name:

media-libs/slv2-0.6.1

Description

A library to make the use of LV2 plugins as simple as possible for applicatio

Added to portage

2008-11-20

sound-theme-freedesktop - 0.2
Ebuild name:

x11-themes/sound-theme-freedesktop-0.2

Description

Default freedesktop.org sound theme following the XDG themin

Added to portage

2008-11-20

ssh-askpass-fullscreen - 0.4-r1
Ebuild name:

net-misc/ssh-askpass-fullscreen-0.4-r1

Description

A small SSH Askpass replacement written with GTK2.

Added to portage

2008-11-20

sympy - 0.6.3
Ebuild name:

dev-python/sympy-0.6.3

Description

Computer algebra system (CAS) in Python

Added to portage

2008-11-20

texlive-core - 2008-r4
Ebuild name:

app-text/texlive-core-2008-r4

Description

A complete TeX distribution

Added to portage

2008-11-20

udev - 133
Ebuild name:

sys-fs/udev-133

Description

Linux dynamic and persistent device naming support (aka userspace devfs)

Added to portage

2008-11-20

wfmath - 0.3.8
Ebuild name:

dev-games/wfmath-0.3.8

Description

Worldforge math library

Added to portage

2008-11-20

xsp - 2.0
Ebuild name:

dev-dotnet/xsp-2.0

Description

XSP ASP.NET host

Added to portage

2008-11-20

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004 S&P Softwaredesign
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 29.8 ms
system status display
Stellenangebote
Ärger mit Freenet.de