2.  SPECIAL CHARACTERS

      The editor ed is the primary interface to the system for many people, so it is worthwhile to know how to get the most out of ed for the least effort.

      The next few sections will discuss shortcuts and labor-saving devices. Not all of these will be instantly useful to any one person, of course, but a few will be, and the others should give you ideas to store away for future use. And as always, until you try these things, they will remain theoretical knowledge, not something you have confidence in.

The List command `l'

      ed provides two commands for printing the contents of the lines you're editing. Most people are familiar with p, in combinations like 1,$p
to print all the lines you're editing,
or
s/abc/def/p
to change
`abc'
to
`def'
on the current line.
Less familiar is the
list
command
l
(the letter `l'),
which gives slightly more information than
p.
In particular,
l
makes visible characters that are normally invisible,
such as tabs and backspaces.
If you list a line that contains some of these,
l
will print each tab as
->
and each backspace as
-<.
This makes it much easier to correct the sort of typing mistake
that inserts extra spaces adjacent to tabs,
or inserts a backspace followed by a space.

      The l command also `folds' long lines for printing _ any line that exceeds 72 characters is printed on multiple lines; each printed line except the last is terminated by a backslash \\, so you can tell it was folded. This is useful for printing long lines on short terminals.

      Occasionally the l command will print in a line a string of numbers preceded by a backslash, such as \\07 or \\16. These combinations are used to make visible characters that normally don't print, like form feed or vertical tab or bell. Each such combination is a single character. When you see such characters, be wary _ they may have surprising meanings when printed on some terminals. Often their presence means that your finger slipped while you were typing; you almost never want them.

The Substitute Command `s'

      Most of the next few sections will be taken up with a discussion of the substitute command s. Since this is the command for changing the contents of individual lines, it probably has the most complexity of any ed command, and the most potential for effective use.

      As the simplest place to begin, recall the meaning of a trailing g after a substitute command. With s/this/that/
and
s/this/that/g
the
first
one replaces the
first
`this' on the line
with `that'.
If there is more than one `this' on the line,
the second form
with the trailing
g
changes
all
of them.

      Either form of the s command can be followed by p or l to `print' or `list' (as described in the previous section) the contents of the line: s/this/that/p
s/this/that/l
s/this/that/gp
s/this/that/gl
are all legal, and mean slightly different things.
Make sure you know what the differences are.

      Of course, any s command can be preceded by one or two `line numbers' to specify that the substitution is to take place on a group of lines. Thus 1,$s/mispell/misspell/
changes the
first
occurrence of
`mispell' to `misspell' on every line of the file.
But
1,$s/mispell/misspell/g
changes
every
occurrence in every line
(and this is more likely to be what you wanted in this
particular case).

      You should also notice that if you add a p or l to the end of any of these substitute commands, only the last line that got changed will be printed, not all the lines. We will talk later about how to print all the lines that were modified.

The Undo Command `u'

      Occasionally you will make a substitution in a line, only to realize too late that it was a ghastly mistake. The `undo' command u lets you `undo' the last substitution: the last line that was substituted can be restored to its previous state by typing the command u

The Metacharacter `.'

      As you have undoubtedly noticed when you use ed, certain characters have unexpected meanings when they occur in the left side of a substitute command, or in a search for a particular line. In the next several sections, we will talk about these special characters, which are often called `metacharacters'.

      The first one is the period `.'. On the left side of a substitute command, or in a search with `/.../', `.' stands for any single character. Thus the search /x.y/
finds any line where `x' and `y' occur separated by
a single character, as in
x+y
x-y
xoy
x.y
and so on.
(We will use o to stand for a space whenever we need to
make it visible.)

      Since `.' matches a single character, that gives you a way to deal with funny characters printed by l. Suppose you have a line that, when printed with the l command, appears as .... th\\07is ....
and you want to get rid of the
\\07
(which represents the bell character, by the way).

      The most obvious solution is to try s/\\07//
but this will fail. (Try it.)
The brute force solution, which most people would now take,
is to re-type the entire line.
This is guaranteed, and is actually quite a reasonable tactic
if the line in question isn't too big,
but for a very long line,
re-typing is a bore.
This is where the metacharacter `.' comes in handy.
Since `\\07' really represents a single character,
if we say
s/th.is/this/
the job is done.
The `.' matches the mysterious character between the `h' and the `i',
whatever it is.

      Bear in mind that since `.' matches any single character, the command s/./,/
converts the first character on a line into a `,',
which very often is not what you intended.

      As is true of many characters in ed, the `.' has several meanings, depending on its context. This line shows all three: .s/././
The first `.' is a line number,
the number of
the line we are editing,
which is called `line dot'.
(We will discuss line dot more in Section 3.)
The second `.' is a metacharacter
that matches any single character on that line.
The third `.' is the only one that really is
an honest literal period.
On the
right
side of a substitution, `.'
is not special.
If you apply this command to the line
Now is the time.
the result will
be
.ow is the time.
which is probably not what you intended.

The Backslash `\\'

      Since a period means `any character', the question naturally arises of what to do when you really want a period. For example, how do you convert the line Now is the time.
into
Now is the time?
The backslash `\\' does the job.
A backslash turns off any special meaning that the next character
might have; in particular,
`\\.' converts the `.' from a `match anything'
into a period, so
you can use it to replace
the period in
Now is the time.
like this:
s/\\./?/
The pair of characters `\\.' is considered by
ed
to be a single real period.

      The backslash can also be used when searching for lines that contain a special character. Suppose you are looking for a line that contains .PP
The search
/.PP/
isn't adequate, for it will find
a line like
THE APPLICATION OF ...
because the `.' matches the letter `A'.
But if you say
/\\.PP/
you will find only lines that contain `.PP'.

      The backslash can also be used to turn off special meanings for characters other than `.'. For example, consider finding a line that contains a backslash. The search /\\/
won't work,
because the `\\' isn't a literal `\\', but instead means that the second `/'
no longer delimits the search.
But by preceding a backslash with another one,
you can search for a literal backslash.
Thus
/\\\\/
does work.
Similarly, you can search for a forward slash `/' with
/\\//
The backslash turns off the meaning of the immediately following `/' so that
it doesn't terminate the /.../ construction prematurely.

      As an exercise, before reading further, find two substitute commands each of which will convert the line \\x\\.\\y
into the line
\\x\\y

      Here are several solutions; verify that each works as advertised. s/\\\\\\.//
s/x../x/
s/..y/y/

      A couple of miscellaneous notes about backslashes and special characters. First, you can use any character to delimit the pieces of an s command: there is nothing sacred about slashes. (But you must use slashes for context searching.) For instance, in a line that contains a lot of slashes already, like //exec //sys.fort.go // etc...
you could use a colon as the delimiter _
to delete all the slashes, type
s:/::g

      Second, if # and @ are your character erase and line kill characters, you have to type \\# and \\@; this is true whether you're talking to ed or any other program.

      When you are adding text with a or i or c, backslash is not special, and you should only put in one backslash for each one you really want.

The Dollar Sign `$'

      The next metacharacter, the `$', stands for `the end of the line'. As its most obvious use, suppose you have the line Now is the
and you wish to add the word `time' to the end.
Use the $ like this:
s/$/otime/
to get
Now is the time
Notice that a space is needed before `time' in
the substitute command,
or you will get
Now is thetime

      As another example, replace the second comma in the following line with a period without altering the first: Now is the time, for all good men,
The command needed is
s/,$/./
The $ sign here provides context to make specific which comma we mean.
Without it, of course, the
s
command would operate on the first comma to produce
Now is the time. for all good men,

      As another example, to convert Now is the time.
into
Now is the time?
as we did earlier, we can use
s/.$/?/

      Like `.', the `$' has multiple meanings depending on context. In the line $s/$/$/
the first `$' refers to the
last line of the file,
the second refers to the end of that line,
and the third is a literal dollar sign,
to be added to that line.

The Circumflex `^'

      The circumflex (or hat or caret) `^' stands for the beginning of the line. For example, suppose you are looking for a line that begins with `the'. If you simply say /the/
you will in all likelihood find several lines that contain `the' in the middle before
arriving at the one you want.
But with
/^the/
you narrow the context, and thus arrive at the desired one
more easily.

      The other use of `^' is of course to enable you to insert something at the beginning of a line: s/^/o/
places a space at the beginning of the current line.

      Metacharacters can be combined. To search for a line that contains only the characters .PP
you can use the command
/^\\.PP$/

The Star `*'

      Suppose you have a line that looks like this: text x y text
where
text
stands
for lots of text,
and there are some indeterminate number of spaces between the
x
and the
y.
Suppose the job is to replace all the spaces between
x
and
y
by a single space.
The line is too long to retype, and there are too many spaces
to count.
What now?

      This is where the metacharacter `*' comes in handy. A character followed by a star stands for as many consecutive occurrences of that character as possible. To refer to all the spaces at once, say s/xo*y/xoy/
The construction
`o*'
means
`as many spaces as possible'.
Thus `xo*y' means `an x, as many spaces as possible, then a y'.

      The star can be used with any character, not just space. If the original example was instead text x--------y text
then all `-' signs can be replaced by a single space
with the command
s/x-*y/xoy/

      Finally, suppose that the line was text x..................y text
Can you see what trap lies in wait for the unwary?
If you blindly type
s/x.*y/xoy/
what will happen?
The answer, naturally, is that it depends.
If there are no other x's or y's on the line,
then everything works, but it's blind luck, not good management.
Remember that `.' matches
any
single character?
Then `.*' matches as many single characters as possible,
and unless you're careful, it can eat up a lot more of the line
than you expected.
If the line was, for example, like this:
text x text x................y text y text
then saying
s/x.*y/xoy/
will take everything from the
first
`x' to the
last
`y',
which, in this example, is undoubtedly more than you wanted.

      The solution, of course, is to turn off the special meaning of `.' with `\\.': s/x\\.*y/xoy/
Now everything works, for `\\.*' means `as many
periods
as possible'.

      There are times when the pattern `.*' is exactly what you want. For example, to change Now is the time for all good men ....
into
Now is the time.
use `.*' to eat up everything after the `for':
s/ofor.*/./

      There are a couple of additional pitfalls associated with `*' that you should be aware of. Most notable is the fact that `as many as possible' means zero or more. The fact that zero is a legitimate possibility is sometimes rather surprising. For example, if our line contained text xy text x y text
and we said
s/xo*y/xoy/
the
first
`xy' matches this pattern, for it consists of an `x',
zero spaces, and a `y'.
The result is that the substitute acts on the first `xy',
and does not touch the later one that actually contains some intervening spaces.

      The way around this, if it matters, is to specify a pattern like /xoo*y/
which says `an x, a space, then as many more spaces as possible, then a y',
in other words, one or more spaces.

      The other startling behavior of `*' is again related to the fact that zero is a legitimate number of occurrences of something followed by a star. The command s/x*/y/g
when applied to the line
abcdef
produces
yaybycydyeyfy
which is almost certainly not what was intended.
The reason for this behavior is that zero is a legal number
of matches,
and there are no x's at the beginning of the line
(so that gets converted into a `y'),
nor between the `a' and the `b'
(so that gets converted into a `y'), nor ...
and so on.
Make sure you really want zero matches;
if not, in this case write
s/xx*/y/g
`xx*' is one or more x's.

The Brackets `[ ]'

      Suppose that you want to delete any numbers that appear at the beginning of all lines of a file. You might first think of trying a series of commands like 1,$s/^1*//
1,$s/^2*//
1,$s/^3*//
and so on,
but this is clearly going to take forever if the numbers are at all long.
Unless you want to repeat the commands over and over until
finally all numbers are gone,
you must get all the digits on one pass.
This is the purpose of the brackets [ and ].

      The construction [0123456789]
matches any single digit _
the whole thing is called a `character class'.
With a character class, the job is easy.
The pattern `[0123456789]*' matches zero or more digits (an entire number), so
1,$s/^[0123456789]*//
deletes all digits from the beginning of all lines.

      Any characters can appear within a character class, and just to confuse the issue there are essentially no special characters inside the brackets; even the backslash doesn't have a special meaning. To search for special characters, for example, you can say /[.\\$^[]/
Within [...], the `[' is not special.
To get a `]' into a character class,
make it the first character.

      It's a nuisance to have to spell out the digits, so you can abbreviate them as [0-9]; similarly, [a-z] stands for the lower case letters, and [A-Z] for upper case.

      As a final frill on character classes, you can specify a class that means `none of the following characters'. This is done by beginning the class with a `^': [^0-9]
stands for `any character
except
a digit'.
Thus you might find the first line that doesn't begin with a tab or space
by a search like
/^[^(space)(tab)]/

      Within a character class, the circumflex has a special meaning only if it occurs at the beginning. Just to convince yourself, verify that /^[^^]/
finds a line that doesn't begin with a circumflex.

The Ampersand `&'

      The ampersand `&' is used primarily to save typing. Suppose you have the line Now is the time
and you want to make it
Now is the best time
Of course you can always say
s/the/the best/
but it seems silly to have to repeat the `the'.
The `&' is used to eliminate the repetition.
On the
right
side of a substitute, the ampersand means `whatever
was just matched', so you can say
s/the/& best/
and the `&' will stand for `the'.
Of course this isn't much of a saving if the thing
matched is just `the', but if it is something truly long or awful,
or if it is something like `.*'
which matches a lot of text,
you can save some tedious typing.
There is also much less chance of making a typing error
in the replacement text.
For example, to parenthesize a line,
regardless of its length,
s/.*/(&)/

      The ampersand can occur more than once on the right side: s/the/& best and & worst/
makes
Now is the best and the worst time
and
s/.*/&? &!!/
converts the original line into
Now is the time? Now is the time!!

      To get a literal ampersand, naturally the backslash is used to turn off the special meaning: s/ampersand/\\&/
converts the word into the symbol.
Notice that `&' is not special on the left side
of a substitute, only on the
right
side.

Substituting Newlines

      ed provides a facility for splitting a single line into two or more shorter lines by `substituting in a newline'. As the simplest example, suppose a line has gotten unmanageably long because of editing (or merely because it was unwisely typed). If it looks like text xy text
you can break it between the `x' and the `y' like this:
s/xy/x\\
y/
This is actually a single command,
although it is typed on two lines.
Bearing in mind that `\\' turns off special meanings,
it seems relatively intuitive that a `\\' at the end of
a line would make the newline there
no longer special.

      You can in fact make a single line into several lines with this same mechanism. As a large example, consider underlining the word `very' in a long line by splitting `very' onto a separate line, and preceding it by the roff or nroff formatting command `.ul'. text a very big text
The command
s/overyo/\\
.ul\\
very\\
/
converts the line into four shorter lines,
preceding the word `very' by the
line
`.ul',
and eliminating the spaces around the `very',
all at the same time.

      When a newline is substituted in, dot is left pointing at the last line created.

     

Joining Lines

      Lines may also be joined together, but this is done with the j command instead of s. Given the lines Now is
othe time
and supposing that dot is set to the first of them,
then the command
j
joins them together.
No blanks are added,
which is why we carefully showed a blank
at the beginning of the second line.

      All by itself, a j command joins line dot to line dot+1, but any contiguous set of lines can be joined. Just specify the starting and ending line numbers. For example, 1,$jp
joins all the lines into one big one
and prints it.
(More on line numbers in Section 3.)

Rearranging a Line with \\( ... \\)

      (This section should be skipped on first reading.) Recall that `&' is a shorthand that stands for whatever was matched by the left side of an s command. In much the same way you can capture separate pieces of what was matched; the only difference is that you have to specify on the left side just what pieces you're interested in.

      Suppose, for instance, that you have a file of lines that consist of names in the form Smith, A. B.
Jones, C.
and so on,
and you want the initials to precede the name, as in
A. B. Smith
C. Jones
It is possible to do this with a series of editing commands,
but it is tedious and error-prone.
(It is instructive to figure out how it is done, though.)

      The alternative is to `tag' the pieces of the pattern (in this case, the last name, and the initials), and then rearrange the pieces. On the left side of a substitution, if part of the pattern is enclosed between \\( and \\), whatever matched that part is remembered, and available for use on the right side. On the right side, the symbol `\\1' refers to whatever matched the first \\(...\\) pair, `\\2' to the second \\(...\\), and so on.

      The command 1,$s/^\\([^,]*\\),o*\\(.*\\)/\\2o\\1/
although hard to read, does the job.
The first \\(...\\) matches the last name,
which is any string up to the comma;
this is referred to on the right side with `\\1'.
The second \\(...\\) is whatever follows
the comma and any spaces,
and is referred to as `\\2'.

      Of course, with any editing sequence this complicated, it's foolhardy to simply run it and hope. The global commands g and v discussed in section 4 provide a way for you to print exactly those lines which were affected by the substitute command, and thus verify that it did what you wanted in all cases.