home | O'Reilly's CD bookshelfs | FreeBSD | Linux | Cisco | Cisco Exam  


UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: 10.3 Syntax of Sed Commands Chapter 10
The Sed Editor
Next: 10.5 Alphabetical Summary of Sed Commands
 

10.4 Group Summary of Sed Commands

In the lists below, the sed commands are grouped by function and are described tersely. Full descriptions, including syntax and examples, can be found afterward in the alphabetical summary.

10.4.1 Basic Editing

a\ Append text after a line.
c\ Replace text (usually a text block).
i\ Insert text after a line.
d Delete lines.
s Make substitutions.
y Translate characters (like a UNIX tr ).

10.4.2 Line Information

= Display line number of a line.
l Display control characters in ASCII.
p Display the line.

10.4.3 Input/Output Processing

n Skip current line and go to line below.
r Read another file's contents into the input.
w Write input lines to another file.
q Quit the sed script (no further output).

10.4.4 Yanking and Putting

h Copy into hold space; wipe out what's there.
H Copy into hold space; append to what's there.
g Get the hold space back; wipe out the destination line.
G Get the hold space back; append on line below.
x Exchange contents of hold space and pattern space.

10.4.5 Branching Commands

b Branch to label or to end of script.
t Same as b , but branch only after substitution.
: label Label branched to by t or b .

10.4.6 Multi-line Input Processing

N Read another line of input (creates embedded newline).
D Delete up to the embedded newline.
P Print up to the embedded newline.


Previous: 10.3 Syntax of Sed Commands UNIX in a Nutshell: System V Edition Next: 10.5 Alphabetical Summary of Sed Commands
10.3 Syntax of Sed Commands Book Index 10.5 Alphabetical Summary of Sed Commands

The UNIX CD Bookshelf Navigation The UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System