Because program examples are set off by a pair of macros (something
like .ES and .EE, for "Example
Start" and "Example
End"), we can use those as the basis for exclusion.
Here's some sample text that includes an example:
.LP
The \fItrue\fP command returns a zero exit status.
As Joe says, "this is only useful in programming":
.ES
% \fBtrue\fP
% \fBecho "the status was $status"\fP
the status was 0
.EE
So you can say:
/^\.ES/,/^\.EE/!{
s/^"/``/
...
s/\\(em"/\\(em``/g
}
/^\.ES/,/^\.EE/bend
s/^"/``/
...
s/\\(em"/\\(em``/g
:end
A label consists of a colon (:) followed by up to seven characters.
If the label is missing, the b command branches
to the end of the script. (In the example above, the label
end was included just to show how to use one, but
a label is not really necessary here.)
The b command is designed for flow control
within the script. It allows you to create subscripts that will be
applied only to lines matching certain patterns and not elsewhere.
However, as in this case, it also provides a powerful way to exempt
part of the text from the action of a single-level script.
The advantage of b over !
for this application is that you can more easily specify multiple
conditions to avoid. The ! command can be
applied to a single command or to the set of commands, enclosed in
braces, that immediately follows. On the other hand,
b gives you almost unlimited control over
movement around the script.
-- TOR
 |  |  |
34.19. Multiline Delete |  | 34.21. The sed Test Command |