Pattern Addressing
A sed command can specify
zero, one, or two addresses. In POSIX sed, an address has one of the forms in
the following table. Regular expressions are described in Chapter 7. Additionally, \n can be used to match any newline in the
pattern space (resulting from the N command), but not the newline at the end
of the pattern space.
|
Address |
Meaning |
|
|
Lines that match pattern. |
|
|
Like previous, but use semicolon as the delimiter instead of slash. Any character may be used. This is useful if pattern contains multiple slash characters. |
|
|
Line number N. |
|
|
The last input line. |
|
If the command specifies: |
Then the command is applied to: |
|
No address |
Each input line. |
|
One address |
Any line matching the address.
Some commands accept only one address: |
|
Two comma-separated addresses |
First matching line and all succeeding lines up to and including a line matching the second address. |
|
An address followed by |
All lines that do not match the address. |
GNU sed allows additional address forms:
|
Address |
Meaning |
|
|
Match pattern, ignoring case.
|
|
|
Match pattern, allowing |
|
|
Similar to |
|
|
Matches line matching address, and the N following lines. |
|
|
Matches line matching address, and every ... |
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access