1999-08-27 23:15:48 +00:00
|
|
|
.\" $FreeBSD$
|
2004-07-03 02:03:44 +00:00
|
|
|
.Dd July 3, 2004
|
1998-05-13 07:41:13 +00:00
|
|
|
.Dt ED 1
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
2000-01-10 12:20:30 +00:00
|
|
|
.Nm ed ,
|
|
|
|
.Nm red
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nd text editor
|
|
|
|
.Sh SYNOPSIS
|
2000-11-20 11:39:41 +00:00
|
|
|
.Nm
|
1998-05-13 07:41:13 +00:00
|
|
|
.Op Fl
|
|
|
|
.Op Fl sx
|
|
|
|
.Op Fl p Ar string
|
|
|
|
.Op Ar file
|
2002-06-24 22:06:47 +00:00
|
|
|
.Nm red
|
|
|
|
.Op Fl
|
|
|
|
.Op Fl sx
|
|
|
|
.Op Fl p Ar string
|
|
|
|
.Op Ar file
|
1998-05-13 07:41:13 +00:00
|
|
|
.Sh DESCRIPTION
|
2002-04-16 20:08:06 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility is a line-oriented text editor.
|
1993-06-18 13:00:14 +00:00
|
|
|
It is used to create, display, modify and otherwise manipulate text
|
|
|
|
files.
|
2002-06-24 22:06:47 +00:00
|
|
|
When invoked as
|
|
|
|
.Nm red ,
|
|
|
|
the editor runs in
|
|
|
|
.Qq restricted
|
|
|
|
mode, in which the only difference is that the editor restricts the
|
|
|
|
use of filenames which start with
|
|
|
|
.Ql \&!
|
|
|
|
(interpreted as shell commands by
|
2002-07-04 13:22:22 +00:00
|
|
|
.Nm )
|
2002-06-24 22:06:47 +00:00
|
|
|
or contain a
|
|
|
|
.Ql \&/ .
|
|
|
|
Note that editing outside of the current directory is only prohibited
|
|
|
|
if the user does not have write access to the current directory.
|
|
|
|
If a user has write access to the current directory, then symbolic
|
|
|
|
links can be created in the current directory, in which case
|
|
|
|
.Nm red
|
|
|
|
will not stop the user from editing the file that the symbolic link
|
|
|
|
points to.
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
If invoked with a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
argument, then a copy of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
is read into the editor's buffer.
|
|
|
|
Changes are made to this copy and not directly to
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
itself.
|
|
|
|
Upon quitting
|
2000-11-20 11:39:41 +00:00
|
|
|
.Nm ,
|
2002-07-04 13:22:22 +00:00
|
|
|
any changes not explicitly saved with a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em w
|
1993-06-18 13:00:14 +00:00
|
|
|
command are lost.
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
Editing is done in two distinct modes:
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em command
|
1993-06-18 13:00:14 +00:00
|
|
|
and
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em input .
|
1993-06-18 13:00:14 +00:00
|
|
|
When first invoked,
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
1993-06-18 13:00:14 +00:00
|
|
|
is in command mode.
|
|
|
|
In this mode commands are read from the standard input and
|
|
|
|
executed to manipulate the contents of the editor buffer.
|
|
|
|
A typical command might look like:
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
|
|
|
.Sm off
|
|
|
|
.Cm ,s No / Em old Xo
|
|
|
|
.No / Em new
|
|
|
|
.No / Cm g
|
|
|
|
.Xc
|
|
|
|
.Sm on
|
|
|
|
.Pp
|
1994-04-24 01:06:32 +00:00
|
|
|
which replaces all occurrences of the string
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em old
|
1993-06-18 13:00:14 +00:00
|
|
|
with
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em new .
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
When an input command, such as
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em a
|
1993-06-18 13:00:14 +00:00
|
|
|
(append),
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em i
|
1993-06-18 13:00:14 +00:00
|
|
|
(insert) or
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em c
|
1993-06-18 13:00:14 +00:00
|
|
|
(change), is given,
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
2002-07-04 13:22:22 +00:00
|
|
|
enters input mode.
|
|
|
|
This is the primary means
|
1993-06-18 13:00:14 +00:00
|
|
|
of adding text to a file.
|
|
|
|
In this mode, no commands are available;
|
|
|
|
instead, the standard input is written
|
2002-07-04 13:22:22 +00:00
|
|
|
directly to the editor buffer.
|
|
|
|
Lines consist of text up to and
|
1993-06-18 13:00:14 +00:00
|
|
|
including a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em newline
|
1993-06-18 13:00:14 +00:00
|
|
|
character.
|
|
|
|
Input mode is terminated by
|
1998-05-13 07:41:13 +00:00
|
|
|
entering a single period
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pq Em .\&
|
1998-05-13 07:41:13 +00:00
|
|
|
on a line.
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
All
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
1993-06-18 13:00:14 +00:00
|
|
|
commands operate on whole lines or ranges of lines; e.g.,
|
|
|
|
the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em d
|
1993-06-18 13:00:14 +00:00
|
|
|
command deletes lines; the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em m
|
1993-06-18 13:00:14 +00:00
|
|
|
command moves lines, and so on.
|
|
|
|
It is possible to modify only a portion of a line by means of replacement,
|
2002-07-04 13:22:22 +00:00
|
|
|
as in the example above.
|
|
|
|
However even here, the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em s
|
1993-06-18 13:00:14 +00:00
|
|
|
command is applied to whole lines at a time.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
In general,
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
1993-06-18 13:00:14 +00:00
|
|
|
commands consist of zero or more line addresses, followed by a single
|
|
|
|
character command and possibly additional parameters; i.e.,
|
|
|
|
commands have the structure:
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
|
|
|
.Sm off
|
2001-02-01 16:38:02 +00:00
|
|
|
.Xo
|
|
|
|
.Op Ar address Op , Ar address
|
|
|
|
.Ar command Op Ar parameters
|
1998-05-13 07:41:13 +00:00
|
|
|
.Xc
|
|
|
|
.Sm on
|
|
|
|
.Pp
|
1993-06-26 06:47:21 +00:00
|
|
|
The address(es) indicate the line or range of lines to be affected by the
|
2002-07-04 13:22:22 +00:00
|
|
|
command.
|
|
|
|
If fewer addresses are given than the command accepts, then
|
1993-06-26 06:47:21 +00:00
|
|
|
default addresses are supplied.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Sh OPTIONS
|
|
|
|
The following options are available:
|
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Fl s
|
2000-03-01 10:43:09 +00:00
|
|
|
Suppress diagnostics.
|
|
|
|
This should be used if
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm Ns 's
|
1993-06-18 13:00:14 +00:00
|
|
|
standard input is from a script.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Fl x
|
|
|
|
Prompt for an encryption key to be used in subsequent reads and writes
|
1993-06-18 13:00:14 +00:00
|
|
|
(see the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em x
|
1993-06-18 13:00:14 +00:00
|
|
|
command).
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Fl p Ar string
|
2002-07-04 13:22:22 +00:00
|
|
|
Specify a command prompt.
|
|
|
|
This may be toggled on and off with the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em P
|
1993-06-18 13:00:14 +00:00
|
|
|
command.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Ar file
|
2002-07-04 13:22:22 +00:00
|
|
|
Specify the name of a file to read.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
is prefixed with a
|
2002-07-04 13:22:22 +00:00
|
|
|
bang (!), then it is interpreted as a shell command.
|
|
|
|
In this case,
|
1993-06-18 13:00:14 +00:00
|
|
|
what is read is
|
|
|
|
the standard output of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
executed via
|
1998-05-13 07:41:13 +00:00
|
|
|
.Xr sh 1 .
|
1993-06-18 13:00:14 +00:00
|
|
|
To read a file whose name begins with a bang, prefix the
|
|
|
|
name with a backslash (\\).
|
|
|
|
The default filename is set to
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
only if it is not prefixed with a bang.
|
1998-05-13 07:41:13 +00:00
|
|
|
.El
|
|
|
|
.Sh LINE ADDRESSING
|
1994-02-01 00:36:28 +00:00
|
|
|
An address represents the number of a line in the buffer.
|
2002-04-16 20:08:06 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility maintains a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em current address
|
1993-06-18 13:00:14 +00:00
|
|
|
which is
|
|
|
|
typically supplied to commands as the default address when none is specified.
|
2002-07-04 13:22:22 +00:00
|
|
|
When a file is first read, the current address is set to the last line
|
|
|
|
of the file.
|
|
|
|
In general, the current address is set to the last line
|
1993-06-18 13:00:14 +00:00
|
|
|
affected by a command.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
A line address is
|
|
|
|
constructed from one of the bases in the list below, optionally followed
|
2002-07-04 13:22:22 +00:00
|
|
|
by a numeric offset.
|
|
|
|
The offset may include any combination
|
1993-06-18 13:00:14 +00:00
|
|
|
of digits, operators (i.e.,
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em + ,
|
|
|
|
.Em -
|
1993-06-18 13:00:14 +00:00
|
|
|
and
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em ^ )
|
1993-06-18 13:00:14 +00:00
|
|
|
and whitespace.
|
|
|
|
Addresses are read from left to right, and their values are computed
|
|
|
|
relative to the current address.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
One exception to the rule that addresses represent line numbers is the
|
|
|
|
address
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em 0
|
1993-06-18 13:00:14 +00:00
|
|
|
(zero).
|
|
|
|
This means "before the first line,"
|
|
|
|
and is legal wherever it makes sense.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
An address range is two addresses separated either by a comma or
|
2000-03-01 10:43:09 +00:00
|
|
|
semi-colon.
|
|
|
|
The value of the first address in a range cannot exceed the
|
2002-07-04 13:22:22 +00:00
|
|
|
value of the second.
|
|
|
|
If only one address is given in a range, then
|
|
|
|
the second address is set to the given address.
|
|
|
|
If an
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n Ns -tuple
|
1993-06-18 13:00:14 +00:00
|
|
|
of addresses is given where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em "n\ >\ 2" ,
|
1994-02-01 00:36:28 +00:00
|
|
|
then the corresponding range is determined by the last two addresses in
|
|
|
|
the
|
2001-02-01 16:38:02 +00:00
|
|
|
.Em n Ns -tuple .
|
1994-02-01 00:36:28 +00:00
|
|
|
If only one address is expected, then the last address is used.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
Each address in a comma-delimited range is interpreted relative to the
|
2002-07-04 13:22:22 +00:00
|
|
|
current address.
|
|
|
|
In a semi-colon-delimited range, the first address is
|
1993-06-18 13:00:14 +00:00
|
|
|
used to set the current address, and the second address is interpreted
|
|
|
|
relative to the first.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
|
|
|
The following address symbols are recognized:
|
|
|
|
.Bl -tag -width indent
|
|
|
|
.It .
|
1993-06-18 13:00:14 +00:00
|
|
|
The current line (address) in the buffer.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It $
|
1993-06-18 13:00:14 +00:00
|
|
|
The last line in the buffer.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It n
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
2011-02-12 20:28:15 +00:00
|
|
|
.Em n Ns th
|
1993-06-18 13:00:14 +00:00
|
|
|
line in the buffer
|
|
|
|
where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
is a number in the range
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em [0,$] .
|
|
|
|
.It - or ^
|
1993-06-18 13:00:14 +00:00
|
|
|
The previous line.
|
|
|
|
This is equivalent to
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em -1
|
1993-06-18 13:00:14 +00:00
|
|
|
and may be repeated with cumulative effect.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It -n or ^n
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n Ns th
|
1993-06-18 13:00:14 +00:00
|
|
|
previous line, where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
is a non-negative number.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It +
|
|
|
|
The next line.
|
1993-06-18 13:00:14 +00:00
|
|
|
This is equivalent to
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em +1
|
1993-06-18 13:00:14 +00:00
|
|
|
and may be repeated with cumulative effect.
|
2001-07-15 07:53:42 +00:00
|
|
|
.It +n
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n Ns th
|
1993-06-18 13:00:14 +00:00
|
|
|
next line, where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
is a non-negative number.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It , or %
|
2002-07-04 13:22:22 +00:00
|
|
|
The first through last lines in the buffer.
|
|
|
|
This is equivalent to
|
1993-06-18 13:00:14 +00:00
|
|
|
the address range
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em 1,$ .
|
|
|
|
.It ;
|
2002-07-04 13:22:22 +00:00
|
|
|
The current through last lines in the buffer.
|
|
|
|
This is equivalent to
|
1993-06-18 13:00:14 +00:00
|
|
|
the address range
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em .,$ .
|
|
|
|
.It /re/
|
|
|
|
The next line containing the regular expression
|
|
|
|
.Em re .
|
1993-06-18 13:00:14 +00:00
|
|
|
The search wraps to the beginning of the buffer and continues down to the
|
|
|
|
current line, if necessary.
|
|
|
|
// repeats the last search.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It ?re?
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
|
|
|
previous line containing the regular expression
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em re .
|
1993-06-18 13:00:14 +00:00
|
|
|
The search wraps to the end of the buffer and continues up to the
|
|
|
|
current line, if necessary.
|
|
|
|
?? repeats the last search.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It 'lc
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
|
|
|
line previously marked by a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em k
|
1993-06-18 13:00:14 +00:00
|
|
|
(mark) command, where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em lc
|
1993-06-18 13:00:14 +00:00
|
|
|
is a lower case letter.
|
1998-05-13 07:41:13 +00:00
|
|
|
.El
|
|
|
|
.Sh REGULAR EXPRESSIONS
|
1993-06-18 13:00:14 +00:00
|
|
|
Regular expressions are patterns used in selecting text.
|
1998-05-13 07:41:13 +00:00
|
|
|
For example, the command:
|
|
|
|
.Pp
|
|
|
|
.Sm off
|
|
|
|
.Cm g No / Em string Xo
|
|
|
|
.No /
|
|
|
|
.Xc
|
|
|
|
.Sm on
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
prints all lines containing
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em string .
|
1993-06-18 13:00:14 +00:00
|
|
|
Regular expressions are also
|
|
|
|
used by the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em s
|
1993-06-18 13:00:14 +00:00
|
|
|
command for selecting old text to be replaced with new.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
In addition to a specifying string literals, regular expressions can
|
|
|
|
represent
|
2002-07-04 13:22:22 +00:00
|
|
|
classes of strings.
|
|
|
|
Strings thus represented are said to be matched
|
1993-06-18 13:00:14 +00:00
|
|
|
by the corresponding regular expression.
|
|
|
|
If it is possible for a regular expression
|
|
|
|
to match several strings in a line, then the left-most longest match is
|
|
|
|
the one selected.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
The following symbols are used in constructing regular expressions:
|
1998-05-13 07:41:13 +00:00
|
|
|
.Bl -tag -width indent
|
|
|
|
.It c
|
1993-06-18 13:00:14 +00:00
|
|
|
Any character
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em c
|
2002-07-04 13:22:22 +00:00
|
|
|
not listed below, including
|
|
|
|
.Ql \&{ ,
|
|
|
|
.Ql \&} ,
|
|
|
|
.Ql \&( ,
|
|
|
|
.Ql \&) ,
|
|
|
|
.Ql <
|
|
|
|
and
|
|
|
|
.Ql > ,
|
1993-06-18 13:00:14 +00:00
|
|
|
matches itself.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Pf \e c
|
1993-06-18 13:00:14 +00:00
|
|
|
Any backslash-escaped character
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em c ,
|
2002-07-04 13:22:22 +00:00
|
|
|
except for
|
|
|
|
.Ql \&{ ,
|
|
|
|
.Ql \&} ,
|
|
|
|
.Ql \&( ,
|
|
|
|
.Ql \&) ,
|
|
|
|
.Ql <
|
|
|
|
and
|
|
|
|
.Ql > ,
|
1993-06-18 13:00:14 +00:00
|
|
|
matches itself.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It .
|
|
|
|
Match any single character.
|
|
|
|
.It Op char-class
|
|
|
|
Match any single character in
|
|
|
|
.Em char-class .
|
2002-07-04 13:22:22 +00:00
|
|
|
To include a
|
|
|
|
.Ql \&]
|
1993-06-18 13:00:14 +00:00
|
|
|
in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em char-class ,
|
1993-06-18 13:00:14 +00:00
|
|
|
it must be the first character.
|
|
|
|
A range of characters may be specified by separating the end characters
|
2002-07-04 13:22:22 +00:00
|
|
|
of the range with a
|
|
|
|
.Ql - ,
|
|
|
|
e.g.,
|
|
|
|
.Ql a-z
|
|
|
|
specifies the lower case characters.
|
1993-06-18 13:00:14 +00:00
|
|
|
The following literal expressions can also be used in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em char-class
|
1993-06-18 13:00:14 +00:00
|
|
|
to specify sets of characters:
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
2000-11-06 11:18:13 +00:00
|
|
|
.Bl -column "[:alnum:]" "[:cntrl:]" "[:lower:]" "[:xdigit:]" -compact
|
2000-11-06 09:14:22 +00:00
|
|
|
.It [:alnum:] Ta [:cntrl:] Ta [:lower:] Ta [:space:]
|
|
|
|
.It [:alpha:] Ta [:digit:] Ta [:print:] Ta [:upper:]
|
|
|
|
.It [:blank:] Ta [:graph:] Ta [:punct:] Ta [:xdigit:]
|
|
|
|
.El
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
2002-07-04 13:22:22 +00:00
|
|
|
If
|
|
|
|
.Ql -
|
|
|
|
appears as the first or last
|
1993-06-18 13:00:14 +00:00
|
|
|
character of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em char-class ,
|
1993-06-18 13:00:14 +00:00
|
|
|
then it matches itself.
|
|
|
|
All other characters in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em char-class
|
1993-06-18 13:00:14 +00:00
|
|
|
match themselves.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
Patterns in
|
1998-07-21 04:53:18 +00:00
|
|
|
.Em char-class
|
1993-06-18 13:00:14 +00:00
|
|
|
of the form:
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
2000-11-06 09:14:22 +00:00
|
|
|
.Bl -item -compact -offset 2n
|
|
|
|
.It
|
2000-12-18 14:48:17 +00:00
|
|
|
.Op \&. Ns Ar col-elm Ns .\&
|
2000-11-06 09:14:22 +00:00
|
|
|
or,
|
|
|
|
.It
|
|
|
|
.Op = Ns Ar col-elm Ns =
|
|
|
|
.El
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
where
|
2000-11-06 09:14:22 +00:00
|
|
|
.Ar col-elm
|
1993-06-18 13:00:14 +00:00
|
|
|
is a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em collating element
|
2003-05-03 20:26:11 +00:00
|
|
|
are interpreted according to the current locale settings
|
1993-06-18 13:00:14 +00:00
|
|
|
(not currently supported).
|
|
|
|
See
|
1998-05-13 07:41:13 +00:00
|
|
|
.Xr regex 3
|
2003-05-03 20:26:11 +00:00
|
|
|
and
|
|
|
|
.Xr re_format 7
|
1993-06-18 13:00:14 +00:00
|
|
|
for an explanation of these constructs.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Op ^char-class
|
|
|
|
Match any single character, other than newline, not in
|
|
|
|
.Em char-class .
|
|
|
|
.Em Char-class
|
1993-06-18 13:00:14 +00:00
|
|
|
is defined
|
|
|
|
as above.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It ^
|
|
|
|
If
|
|
|
|
.Em ^
|
|
|
|
is the first character of a regular expression, then it
|
1993-06-18 13:00:14 +00:00
|
|
|
anchors the regular expression to the beginning of a line.
|
|
|
|
Otherwise, it matches itself.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It $
|
|
|
|
If
|
|
|
|
.Em $
|
|
|
|
is the last character of a regular expression, it
|
1993-06-18 13:00:14 +00:00
|
|
|
anchors the regular expression to the end of a line.
|
|
|
|
Otherwise, it matches itself.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Pf \e <
|
|
|
|
Anchor the single character regular expression or subexpression
|
1993-06-18 13:00:14 +00:00
|
|
|
immediately following it to the beginning of a word.
|
|
|
|
(This may not be available)
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Pf \e >
|
|
|
|
Anchor the single character regular expression or subexpression
|
1993-06-18 13:00:14 +00:00
|
|
|
immediately following it to the end of a word.
|
|
|
|
(This may not be available)
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Pf \e (re\e)
|
|
|
|
Define a subexpression
|
|
|
|
.Em re .
|
1993-06-18 13:00:14 +00:00
|
|
|
Subexpressions may be nested.
|
1998-05-13 07:41:13 +00:00
|
|
|
A subsequent backreference of the form
|
2001-02-28 17:38:53 +00:00
|
|
|
.Pf \e Em n ,
|
1998-05-13 07:41:13 +00:00
|
|
|
where
|
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
is a number in the range [1,9], expands to the text matched by the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n Ns th
|
1993-06-18 13:00:14 +00:00
|
|
|
subexpression.
|
2002-07-04 13:22:22 +00:00
|
|
|
For example, the regular expression
|
|
|
|
.Ql \e(.*\e)\e1
|
|
|
|
matches any string
|
1993-06-18 13:00:14 +00:00
|
|
|
consisting of identical adjacent substrings.
|
|
|
|
Subexpressions are ordered relative to
|
|
|
|
their left delimiter.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It *
|
|
|
|
Match the single character regular expression or subexpression
|
2002-07-04 13:22:22 +00:00
|
|
|
immediately preceding it zero or more times.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em *
|
|
|
|
is the first
|
1993-06-18 13:00:14 +00:00
|
|
|
character of a regular expression or subexpression, then it matches
|
2002-07-04 13:22:22 +00:00
|
|
|
itself.
|
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em *
|
|
|
|
operator sometimes yields unexpected results.
|
2002-07-04 13:22:22 +00:00
|
|
|
For example, the regular expression
|
|
|
|
.Ql b*
|
|
|
|
matches the beginning of
|
|
|
|
the string
|
|
|
|
.Ql abbb
|
|
|
|
(as opposed to the substring
|
|
|
|
.Ql bbb ) ,
|
|
|
|
since a null match
|
1993-06-18 13:00:14 +00:00
|
|
|
is the only left-most match.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It \e{n,m\e} or \e{n,\e} or \e{n\e}
|
|
|
|
Match the single character regular expression or subexpression
|
1993-06-18 13:00:14 +00:00
|
|
|
immediately preceding it at least
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
and at most
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em m
|
1993-06-18 13:00:14 +00:00
|
|
|
times.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em m
|
1993-06-18 13:00:14 +00:00
|
|
|
is omitted, then it matches at least
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
times.
|
|
|
|
If the comma is also omitted, then it matches exactly
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
times.
|
1998-05-13 07:41:13 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
Additional regular expression operators may be defined depending on the
|
|
|
|
particular
|
1998-05-13 07:41:13 +00:00
|
|
|
.Xr regex 3
|
1993-06-18 13:00:14 +00:00
|
|
|
implementation.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Sh COMMANDS
|
1993-06-18 13:00:14 +00:00
|
|
|
All
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
1997-08-30 11:09:26 +00:00
|
|
|
commands are single characters, though some require additional parameters.
|
1993-06-18 13:00:14 +00:00
|
|
|
If a command's parameters extend over several lines, then
|
|
|
|
each line except for the last
|
|
|
|
must be terminated with a backslash (\\).
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
In general, at most one command is allowed per line.
|
|
|
|
However, most commands accept a print suffix, which is any of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em p
|
1993-06-18 13:00:14 +00:00
|
|
|
(print),
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em l
|
2001-08-10 17:35:21 +00:00
|
|
|
(list),
|
1993-06-18 13:00:14 +00:00
|
|
|
or
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
(enumerate),
|
|
|
|
to print the last line affected by the command.
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
An interrupt (typically ^C) has the effect of aborting the current command
|
|
|
|
and returning the editor to command mode.
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
2002-04-16 20:08:06 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility
|
2002-07-04 13:22:22 +00:00
|
|
|
recognizes the following commands.
|
|
|
|
The commands are shown together with
|
1993-06-18 13:00:14 +00:00
|
|
|
the default address or address range supplied if none is
|
|
|
|
specified (in parenthesis).
|
1998-05-13 07:41:13 +00:00
|
|
|
.Bl -tag -width indent
|
|
|
|
.It (.)a
|
|
|
|
Append text to the buffer after the addressed line.
|
1993-06-18 13:00:14 +00:00
|
|
|
Text is entered in input mode.
|
|
|
|
The current address is set to last line entered.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)c
|
2002-07-04 13:22:22 +00:00
|
|
|
Change lines in the buffer.
|
|
|
|
The addressed lines are deleted
|
1993-06-18 13:00:14 +00:00
|
|
|
from the buffer, and text is appended in their place.
|
|
|
|
Text is entered in input mode.
|
|
|
|
The current address is set to last line entered.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)d
|
|
|
|
Delete the addressed lines from the buffer.
|
1993-06-18 13:00:14 +00:00
|
|
|
If there is a line after the deleted range, then the current address is set
|
2000-03-01 10:43:09 +00:00
|
|
|
to this line.
|
|
|
|
Otherwise the current address is set to the line
|
1993-06-18 13:00:14 +00:00
|
|
|
before the deleted range.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It e Ar file
|
|
|
|
Edit
|
|
|
|
.Ar file ,
|
1993-06-18 13:00:14 +00:00
|
|
|
and sets the default filename.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
2002-07-04 13:22:22 +00:00
|
|
|
is not specified, then the default filename is used.
|
1993-06-18 13:00:14 +00:00
|
|
|
Any lines in the buffer are deleted before
|
|
|
|
the new file is read.
|
|
|
|
The current address is set to the last line read.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It e Ar !command
|
|
|
|
Edit the standard output of
|
|
|
|
.Ar !command ,
|
1994-02-01 00:36:28 +00:00
|
|
|
(see
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar !command
|
1994-02-01 00:36:28 +00:00
|
|
|
below).
|
1993-06-18 13:00:14 +00:00
|
|
|
The default filename is unchanged.
|
|
|
|
Any lines in the buffer are deleted before the output of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command
|
1993-06-18 13:00:14 +00:00
|
|
|
is read.
|
|
|
|
The current address is set to the last line read.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It E Ar file
|
|
|
|
Edit
|
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
unconditionally.
|
|
|
|
This is similar to the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em e
|
1993-06-18 13:00:14 +00:00
|
|
|
command,
|
|
|
|
except that unwritten changes are discarded without warning.
|
|
|
|
The current address is set to the last line read.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It f Ar file
|
|
|
|
Set the default filename to
|
|
|
|
.Ar file .
|
1993-06-18 13:00:14 +00:00
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
is not specified, then the default unescaped filename is printed.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)g/re/command-list
|
|
|
|
Apply
|
|
|
|
.Ar command-list
|
1993-06-18 13:00:14 +00:00
|
|
|
to each of the addressed lines matching a regular expression
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar re .
|
1993-06-18 13:00:14 +00:00
|
|
|
The current address is set to the
|
|
|
|
line currently matched before
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list
|
1993-06-18 13:00:14 +00:00
|
|
|
is executed.
|
|
|
|
At the end of the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g
|
1993-06-18 13:00:14 +00:00
|
|
|
command, the current address is set to the last line affected by
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list .
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
Each command in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list
|
1993-06-18 13:00:14 +00:00
|
|
|
must be on a separate line,
|
|
|
|
and every line except for the last must be terminated by a backslash
|
|
|
|
(\\).
|
|
|
|
Any commands are allowed, except for
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g ,
|
|
|
|
.Em G ,
|
|
|
|
.Em v ,
|
1993-06-18 13:00:14 +00:00
|
|
|
and
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em V .
|
1993-06-18 13:00:14 +00:00
|
|
|
A newline alone in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list
|
2001-07-15 07:53:42 +00:00
|
|
|
is equivalent to a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em p
|
1993-06-18 13:00:14 +00:00
|
|
|
command.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)G/re/
|
|
|
|
Interactively edit the addressed lines matching a regular expression
|
|
|
|
.Ar re .
|
1993-06-18 13:00:14 +00:00
|
|
|
For each matching line,
|
|
|
|
the line is printed,
|
|
|
|
the current address is set,
|
2001-07-15 07:53:42 +00:00
|
|
|
and the user is prompted to enter a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list .
|
1993-06-18 13:00:14 +00:00
|
|
|
At the end of the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em G
|
1993-06-18 13:00:14 +00:00
|
|
|
command, the current address
|
|
|
|
is set to the last line affected by (the last)
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list .
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
The format of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command-list
|
1993-06-18 13:00:14 +00:00
|
|
|
is the same as that of the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g
|
2002-07-04 13:22:22 +00:00
|
|
|
command.
|
|
|
|
A newline alone acts as a null command list.
|
|
|
|
A single
|
|
|
|
.Ql &
|
|
|
|
repeats the last non-null command list.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It H
|
|
|
|
Toggle the printing of error explanations.
|
1993-06-18 13:00:14 +00:00
|
|
|
By default, explanations are not printed.
|
|
|
|
It is recommended that ed scripts begin with this command to
|
|
|
|
aid in debugging.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It h
|
|
|
|
Print an explanation of the last error.
|
|
|
|
.It (.)i
|
|
|
|
Insert text in the buffer before the current line.
|
1993-06-18 13:00:14 +00:00
|
|
|
Text is entered in input mode.
|
|
|
|
The current address is set to the last line entered.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.+1)j
|
2002-07-04 13:22:22 +00:00
|
|
|
Join the addressed lines.
|
|
|
|
The addressed lines are
|
1993-06-18 13:00:14 +00:00
|
|
|
deleted from the buffer and replaced by a single
|
|
|
|
line containing their joined text.
|
|
|
|
The current address is set to the resultant line.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.)klc
|
|
|
|
Mark a line with a lower case letter
|
|
|
|
.Em lc .
|
2002-07-04 13:22:22 +00:00
|
|
|
The line can then be addressed as
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em 'lc
|
1993-06-18 13:00:14 +00:00
|
|
|
(i.e., a single quote followed by
|
2001-08-10 17:35:21 +00:00
|
|
|
.Em lc )
|
2002-07-04 13:22:22 +00:00
|
|
|
in subsequent commands.
|
|
|
|
The mark is not cleared until the line is
|
1993-06-18 13:00:14 +00:00
|
|
|
deleted or otherwise modified.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)l
|
|
|
|
Print the addressed lines unambiguously.
|
2011-02-12 20:28:15 +00:00
|
|
|
If a single line fills more than one screen (as might be the case
|
2002-07-04 13:22:22 +00:00
|
|
|
when viewing a binary file, for instance), a
|
|
|
|
.Dq Li --More--
|
2001-07-15 07:53:42 +00:00
|
|
|
prompt is printed on the last line.
|
2002-04-16 20:08:06 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility waits until the RETURN key is pressed
|
2001-07-15 07:53:42 +00:00
|
|
|
before displaying the next screen.
|
1993-06-18 13:00:14 +00:00
|
|
|
The current address is set to the last line
|
|
|
|
printed.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)m(.)
|
2002-07-04 13:22:22 +00:00
|
|
|
Move lines in the buffer.
|
|
|
|
The addressed lines are moved to after the
|
1993-06-18 13:00:14 +00:00
|
|
|
right-hand destination address, which may be the address
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em 0
|
1993-06-18 13:00:14 +00:00
|
|
|
(zero).
|
|
|
|
The current address is set to the
|
|
|
|
last line moved.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)n
|
|
|
|
Print the addressed lines along with
|
2002-07-04 13:22:22 +00:00
|
|
|
their line numbers.
|
|
|
|
The current address is set to the last line
|
1993-06-18 13:00:14 +00:00
|
|
|
printed.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)p
|
2000-03-01 10:43:09 +00:00
|
|
|
Print the addressed lines.
|
|
|
|
The current address is set to the last line
|
1993-06-18 13:00:14 +00:00
|
|
|
printed.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It P
|
|
|
|
Toggle the command prompt on and off.
|
1993-06-18 13:00:14 +00:00
|
|
|
Unless a prompt was specified by with command-line option
|
1998-05-13 07:41:13 +00:00
|
|
|
.Fl p Ar string ,
|
|
|
|
the command prompt is by default turned off.
|
|
|
|
.It q
|
|
|
|
Quit
|
2000-11-20 11:39:41 +00:00
|
|
|
.Nm .
|
1998-05-13 07:41:13 +00:00
|
|
|
.It Q
|
|
|
|
Quit
|
|
|
|
.Nm
|
|
|
|
unconditionally.
|
1993-06-18 13:00:14 +00:00
|
|
|
This is similar to the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em q
|
1993-06-18 13:00:14 +00:00
|
|
|
command,
|
|
|
|
except that unwritten changes are discarded without warning.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It ($)r Ar file
|
|
|
|
Read
|
|
|
|
.Ar file
|
2002-07-04 13:22:22 +00:00
|
|
|
to after the addressed line.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
is not specified, then the default
|
2002-07-04 13:22:22 +00:00
|
|
|
filename is used.
|
|
|
|
If there was no default filename prior to the command,
|
1993-06-18 13:00:14 +00:00
|
|
|
then the default filename is set to
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file .
|
1993-06-18 13:00:14 +00:00
|
|
|
Otherwise, the default filename is unchanged.
|
|
|
|
The current address is set to the last line read.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It ($)r Ar !command
|
|
|
|
Read
|
1993-06-18 13:00:14 +00:00
|
|
|
to after the addressed line
|
|
|
|
the standard output of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar !command ,
|
1994-02-01 00:36:28 +00:00
|
|
|
(see the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar !command
|
1994-02-01 00:36:28 +00:00
|
|
|
below).
|
1993-06-18 13:00:14 +00:00
|
|
|
The default filename is unchanged.
|
|
|
|
The current address is set to the last line read.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)s/re/replacement/
|
|
|
|
.It (.,.)s/re/replacement/g
|
|
|
|
.It (.,.)s/re/replacement/n
|
|
|
|
Replace text in the addressed lines
|
1993-06-18 13:00:14 +00:00
|
|
|
matching a regular expression
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar re
|
1993-06-18 13:00:14 +00:00
|
|
|
with
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar replacement .
|
1993-06-18 13:00:14 +00:00
|
|
|
By default, only the first match in each line is replaced.
|
1994-02-01 00:36:28 +00:00
|
|
|
If the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g
|
1994-02-01 00:36:28 +00:00
|
|
|
(global) suffix is given, then every match to be replaced.
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1993-06-18 13:00:14 +00:00
|
|
|
suffix, where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1994-04-24 01:06:32 +00:00
|
|
|
is a positive number, causes only the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n Ns th
|
1993-06-18 13:00:14 +00:00
|
|
|
match to be replaced.
|
|
|
|
It is an error if no substitutions are performed on any of the addressed
|
|
|
|
lines.
|
|
|
|
The current address is set the last line affected.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
|
|
|
.Ar Re
|
1993-06-18 13:00:14 +00:00
|
|
|
and
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar replacement
|
1994-02-01 00:36:28 +00:00
|
|
|
may be delimited by any character other than space and newline
|
|
|
|
(see the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em s
|
1994-02-01 00:36:28 +00:00
|
|
|
command below).
|
1993-06-18 13:00:14 +00:00
|
|
|
If one or two of the last delimiters is omitted, then the last line
|
|
|
|
affected is printed as though the print suffix
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em p
|
1993-06-18 13:00:14 +00:00
|
|
|
were specified.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
2002-07-04 13:22:22 +00:00
|
|
|
An unescaped
|
|
|
|
.Ql &
|
|
|
|
in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar replacement
|
1993-06-18 13:00:14 +00:00
|
|
|
is replaced by the currently matched text.
|
|
|
|
The character sequence
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em \em ,
|
1993-06-18 13:00:14 +00:00
|
|
|
where
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em m
|
1993-06-18 13:00:14 +00:00
|
|
|
is a number in the range [1,9], is replaced by the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em m th
|
1993-06-18 13:00:14 +00:00
|
|
|
backreference expression of the matched text.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar replacement
|
2002-07-04 13:22:22 +00:00
|
|
|
consists of a single
|
|
|
|
.Ql % ,
|
|
|
|
then
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar replacement
|
1993-06-18 13:00:14 +00:00
|
|
|
from the last substitution is used.
|
|
|
|
Newlines may be embedded in
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar replacement
|
1993-06-18 13:00:14 +00:00
|
|
|
if they are escaped with a backslash (\\).
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)s
|
|
|
|
Repeat the last substitution.
|
1993-06-18 13:00:14 +00:00
|
|
|
This form of the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em s
|
1994-02-01 00:36:28 +00:00
|
|
|
command accepts a count suffix
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n ,
|
1994-02-01 00:36:28 +00:00
|
|
|
or any combination of the characters
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em r ,
|
|
|
|
.Em g ,
|
1993-06-18 13:00:14 +00:00
|
|
|
and
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em p .
|
1994-02-01 00:36:28 +00:00
|
|
|
If a count suffix
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n
|
1994-02-01 00:36:28 +00:00
|
|
|
is given, then only the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em n Ns th
|
1994-02-01 00:36:28 +00:00
|
|
|
match is replaced.
|
1993-06-18 13:00:14 +00:00
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em r
|
1993-06-18 13:00:14 +00:00
|
|
|
suffix causes
|
|
|
|
the regular expression of the last search to be used instead of the
|
|
|
|
that of the last substitution.
|
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g
|
1993-06-18 13:00:14 +00:00
|
|
|
suffix toggles the global suffix of the last substitution.
|
|
|
|
The
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em p
|
1993-06-18 13:00:14 +00:00
|
|
|
suffix toggles the print suffix of the last substitution
|
|
|
|
The current address is set to the last line affected.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (.,.)t(.)
|
|
|
|
Copy (i.e., transfer) the addressed lines to after the right-hand
|
1993-06-18 13:00:14 +00:00
|
|
|
destination address, which may be the address
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em 0
|
1993-06-18 13:00:14 +00:00
|
|
|
(zero).
|
|
|
|
The current address is set to the last line
|
|
|
|
copied.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It u
|
|
|
|
Undo the last command and restores the current address
|
1993-06-18 13:00:14 +00:00
|
|
|
to what it was before the command.
|
|
|
|
The global commands
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g ,
|
|
|
|
.Em G ,
|
|
|
|
.Em v ,
|
1993-06-18 13:00:14 +00:00
|
|
|
and
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em V .
|
1993-06-18 13:00:14 +00:00
|
|
|
are treated as a single command by undo.
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em u
|
1993-06-18 13:00:14 +00:00
|
|
|
is its own inverse.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)v/re/command-list
|
|
|
|
Apply
|
|
|
|
.Ar command-list
|
1993-06-18 13:00:14 +00:00
|
|
|
to each of the addressed lines not matching a regular expression
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar re .
|
1993-06-18 13:00:14 +00:00
|
|
|
This is similar to the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g
|
1993-06-18 13:00:14 +00:00
|
|
|
command.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)V/re/
|
|
|
|
Interactively edit the addressed lines not matching a regular expression
|
|
|
|
.Ar re .
|
1993-06-18 13:00:14 +00:00
|
|
|
This is similar to the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em G
|
1993-06-18 13:00:14 +00:00
|
|
|
command.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)w Ar file
|
|
|
|
Write the addressed lines to
|
|
|
|
.Ar file .
|
1993-06-18 13:00:14 +00:00
|
|
|
Any previous contents of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file
|
1993-06-18 13:00:14 +00:00
|
|
|
is lost without warning.
|
|
|
|
If there is no default filename, then the default filename is set to
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar file ,
|
2002-07-04 13:22:22 +00:00
|
|
|
otherwise it is unchanged.
|
|
|
|
If no filename is specified, then the default
|
1993-06-18 13:00:14 +00:00
|
|
|
filename is used.
|
|
|
|
The current address is unchanged.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)wq Ar file
|
|
|
|
Write the addressed lines to
|
|
|
|
.Ar file ,
|
1993-06-18 13:00:14 +00:00
|
|
|
and then executes a
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em q
|
1993-06-18 13:00:14 +00:00
|
|
|
command.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)w Ar !command
|
|
|
|
Write the addressed lines to the standard input of
|
|
|
|
.Ar !command ,
|
1994-02-01 00:36:28 +00:00
|
|
|
(see the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em !command
|
1994-02-01 00:36:28 +00:00
|
|
|
below).
|
1993-06-18 13:00:14 +00:00
|
|
|
The default filename and current address are unchanged.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It (1,$)W Ar file
|
|
|
|
Append the addressed lines to the end of
|
|
|
|
.Ar file .
|
1993-06-18 13:00:14 +00:00
|
|
|
This is similar to the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em w
|
1993-06-18 13:00:14 +00:00
|
|
|
command, expect that the previous contents of file is not clobbered.
|
|
|
|
The current address is unchanged.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It x
|
|
|
|
Prompt for an encryption key which is used in subsequent reads and
|
2002-07-04 13:22:22 +00:00
|
|
|
writes.
|
|
|
|
If a newline alone is entered as the key, then encryption is
|
|
|
|
turned off.
|
|
|
|
Otherwise, echoing is disabled while a key is read.
|
1998-05-13 07:41:13 +00:00
|
|
|
Encryption/decryption is done using the
|
|
|
|
.Xr bdes 1
|
|
|
|
algorithm.
|
|
|
|
.It Pf (.+1)z n
|
|
|
|
Scroll
|
|
|
|
.Ar n
|
2002-07-04 13:22:22 +00:00
|
|
|
lines at a time starting at addressed line.
|
|
|
|
If
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar n
|
1993-06-18 13:00:14 +00:00
|
|
|
is not specified, then the current window size is used.
|
|
|
|
The current address is set to the last line printed.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It !command
|
|
|
|
Execute
|
|
|
|
.Ar command
|
1993-06-18 13:00:14 +00:00
|
|
|
via
|
1998-05-13 07:41:13 +00:00
|
|
|
.Xr sh 1 .
|
1993-06-18 13:00:14 +00:00
|
|
|
If the first character of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command
|
2002-07-04 13:22:22 +00:00
|
|
|
is
|
|
|
|
.Ql \&! ,
|
|
|
|
then it is replaced by text of the
|
1993-06-18 13:00:14 +00:00
|
|
|
previous
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar !command .
|
2002-04-16 20:08:06 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility does not process
|
1998-05-13 07:41:13 +00:00
|
|
|
.Ar command
|
1993-06-18 13:00:14 +00:00
|
|
|
for backslash (\\) escapes.
|
|
|
|
However, an unescaped
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em %
|
1993-06-18 13:00:14 +00:00
|
|
|
is replaced by the default filename.
|
2002-07-04 13:22:22 +00:00
|
|
|
When the shell returns from execution, a
|
|
|
|
.Ql \&!
|
1993-06-18 13:00:14 +00:00
|
|
|
is printed to the standard output.
|
|
|
|
The current line is unchanged.
|
1998-05-13 07:41:13 +00:00
|
|
|
.It ($)=
|
|
|
|
Print the line number of the addressed line.
|
|
|
|
.It (.+1)newline
|
|
|
|
Print the addressed line, and sets the current address to
|
1993-06-18 13:00:14 +00:00
|
|
|
that line.
|
1998-05-13 07:41:13 +00:00
|
|
|
.El
|
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /tmp/ed.* -compact
|
2013-05-12 22:22:12 +00:00
|
|
|
.It Pa /tmp/ed.*
|
1998-05-13 07:41:13 +00:00
|
|
|
buffer file
|
2013-05-12 22:22:12 +00:00
|
|
|
.It Pa ed.hup
|
1998-05-13 07:41:13 +00:00
|
|
|
the file to which
|
|
|
|
.Nm
|
2002-07-04 13:22:22 +00:00
|
|
|
attempts to write the buffer if the terminal hangs up
|
1998-05-13 07:41:13 +00:00
|
|
|
.El
|
|
|
|
.Sh DIAGNOSTICS
|
1993-06-18 13:00:14 +00:00
|
|
|
When an error occurs,
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
2002-07-04 13:22:22 +00:00
|
|
|
prints a
|
|
|
|
.Ql \&?
|
|
|
|
and either returns to command mode
|
1993-06-18 13:00:14 +00:00
|
|
|
or exits if its input is from a script.
|
|
|
|
An explanation of the last error can be
|
|
|
|
printed with the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em h
|
1993-06-18 13:00:14 +00:00
|
|
|
(help) command.
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
2001-07-15 07:53:42 +00:00
|
|
|
Since the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em g
|
2002-07-04 13:22:22 +00:00
|
|
|
(global) command masks any errors from failed searches and substitutions,
|
1993-06-18 13:00:14 +00:00
|
|
|
it can be used to perform conditional operations in scripts; e.g.,
|
1998-05-13 07:41:13 +00:00
|
|
|
.Pp
|
|
|
|
.Sm off
|
|
|
|
.Cm g No / Em old Xo
|
|
|
|
.No / Cm s
|
|
|
|
.No // Em new
|
|
|
|
.No /
|
|
|
|
.Xc
|
|
|
|
.Sm on
|
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
replaces any occurrences of
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em old
|
1993-06-18 13:00:14 +00:00
|
|
|
with
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em new .
|
1993-06-26 06:47:21 +00:00
|
|
|
If the
|
1998-05-13 07:41:13 +00:00
|
|
|
.Em u
|
1993-06-26 06:47:21 +00:00
|
|
|
(undo) command occurs in a global command list, then
|
|
|
|
the command list is executed only once.
|
2000-12-15 17:37:31 +00:00
|
|
|
.Pp
|
1993-06-18 13:00:14 +00:00
|
|
|
If diagnostics are not disabled, attempting to quit
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
1993-06-18 13:00:14 +00:00
|
|
|
or edit another file before writing a modified buffer
|
|
|
|
results in an error.
|
|
|
|
If the command is entered a second time, it succeeds,
|
|
|
|
but any changes to the buffer are lost.
|
2005-01-16 16:41:59 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr bdes 1 ,
|
|
|
|
.Xr sed 1 ,
|
|
|
|
.Xr sh 1 ,
|
|
|
|
.Xr vi 1 ,
|
|
|
|
.Xr regex 3
|
|
|
|
.Pp
|
|
|
|
USD:12-13
|
|
|
|
.Rs
|
|
|
|
.%A B. W. Kernighan
|
|
|
|
.%A P. J. Plauger
|
|
|
|
.%B Software Tools in Pascal
|
|
|
|
.%O Addison-Wesley
|
|
|
|
.%D 1981
|
|
|
|
.Re
|
|
|
|
.Sh LIMITATIONS
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility processes
|
|
|
|
.Ar file
|
|
|
|
arguments for backslash escapes, i.e., in a filename,
|
|
|
|
any characters preceded by a backslash (\\) are
|
|
|
|
interpreted literally.
|
|
|
|
.Pp
|
|
|
|
If a text (non-binary) file is not terminated by a newline character,
|
|
|
|
then
|
|
|
|
.Nm
|
|
|
|
appends one on reading/writing it.
|
|
|
|
In the case of a binary file,
|
|
|
|
.Nm
|
|
|
|
does not append a newline on reading/writing.
|
|
|
|
.Pp
|
|
|
|
per line overhead: 4 ints
|
1998-05-13 07:41:13 +00:00
|
|
|
.Sh HISTORY
|
2001-06-04 23:33:02 +00:00
|
|
|
An
|
1998-05-13 07:41:13 +00:00
|
|
|
.Nm
|
1996-08-29 18:06:19 +00:00
|
|
|
command appeared in
|
|
|
|
Version 1 AT&T UNIX.
|
2004-07-03 02:03:44 +00:00
|
|
|
.Sh BUGS
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility does not recognize multibyte characters.
|