]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/sed/sed.1
This commit was generated by cvs2svn to compensate for changes in r88282,
[FreeBSD/FreeBSD.git] / usr.bin / sed / sed.1
1 .\" Copyright (c) 1992, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the Institute of Electrical and Electronics Engineers, Inc.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\"    must display the following acknowledgement:
17 .\"     This product includes software developed by the University of
18 .\"     California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\"     @(#)sed.1       8.2 (Berkeley) 12/30/93
36 .\" $FreeBSD$
37 .\"
38 .Dd December 30, 1993
39 .Dt SED 1
40 .Os
41 .Sh NAME
42 .Nm sed
43 .Nd stream editor
44 .Sh SYNOPSIS
45 .Nm
46 .Op Fl Ean
47 .Ar command
48 .Op Ar
49 .Nm
50 .Op Fl Ean
51 .Op Fl e Ar command
52 .Op Fl f Ar command_file
53 .Op Ar
54 .Sh DESCRIPTION
55 The
56 .Nm
57 utility reads the specified files, or the standard input if no files
58 are specified, modifying the input as specified by a list of commands.
59 The input is then written to the standard output.
60 .Pp
61 A single command may be specified as the first argument to
62 .Nm .
63 Multiple commands may be specified by using the
64 .Fl e
65 or
66 .Fl f
67 options.
68 All commands are applied to the input in the order they are specified
69 regardless of their origin.
70 .Pp
71 The following options are available:
72 .Bl -tag -width indent
73 .It Fl E
74 Interpret regular expressions as extended (modern) regular expressions
75 rather than basic regular expressions (BRE's).
76 The
77 .Xr re_format 7
78 manual page fully describes both formats.
79 .It Fl a
80 The files listed as parameters for the
81 .Dq w
82 functions are created (or truncated) before any processing begins,
83 by default.
84 The
85 .Fl a
86 option causes
87 .Nm
88 to delay opening each file until a command containing the related
89 .Dq w
90 function is applied to a line of input.
91 .It Fl e Ar command
92 Append the editing commands specified by the
93 .Ar command
94 argument
95 to the list of commands.
96 .It Fl f Ar command_file
97 Append the editing commands found in the file
98 .Ar command_file
99 to the list of commands.
100 The editing commands should each be listed on a separate line.
101 .It Fl n
102 By default, each line of input is echoed to the standard output after
103 all of the commands have been applied to it.
104 The
105 .Fl n
106 option suppresses this behavior.
107 .El
108 .Pp
109 The form of a
110 .Nm
111 command is as follows:
112 .Pp
113 .Dl [address[,address]]function[arguments]
114 .Pp
115 Whitespace may be inserted before the first address and the function
116 portions of the command.
117 .Pp
118 Normally,
119 .Nm
120 cyclically copies a line of input, not including its terminating newline
121 character, into a
122 .Em "pattern space" ,
123 (unless there is something left after a
124 .Dq D
125 function),
126 applies all of the commands with addresses that select that pattern space,
127 copies the pattern space to the standard output, appending a newline, and
128 deletes the pattern space.
129 .Pp
130 Some of the functions use a
131 .Em "hold space"
132 to save all or part of the pattern space for subsequent retrieval.
133 .Sh "Sed Addresses"
134 An address is not required, but if specified must be a number (that counts
135 input lines
136 cumulatively across input files), a dollar
137 .Pq Dq $
138 character that addresses the last line of input, or a context address
139 (which consists of a regular expression preceded and followed by a
140 delimiter).
141 .Pp
142 A command line with no addresses selects every pattern space.
143 .Pp
144 A command line with one address selects all of the pattern spaces
145 that match the address.
146 .Pp
147 A command line with two addresses selects an inclusive range.  This
148 range starts with the first pattern space that matches the first
149 address.  The end of the range is the next following pattern space
150 that matches the second address.  If the second address is a number
151 less than or equal to the line number first selected, only that
152 line is selected.  In the case when the second address is a context
153 address, sed does not re-match the second address against the
154 pattern space that matched the first address.  Starting at the
155 first line following the selected range, sed starts looking again
156 for the first address.
157 .Nm
158 starts looking again for the first address.
159 .Pp
160 Editing commands can be applied to non-selected pattern spaces by use
161 of the exclamation character
162 .Pq Dq \&!
163 function.
164 .Sh "Sed Regular Expressions"
165 The regular expressions used in
166 .Nm ,
167 by default, are basic regular expressions (BREs, see
168 .Xr re_format 7
169 for more information).
170 .Nm
171 can use extended (modern) regular expressions instead if the
172 .Fl E
173 flag is given.
174 In addition,
175 .Nm
176 has the following two additions to regular expressions:
177 .Pp
178 .Bl -enum -compact
179 .It
180 In a context address, any character other than a backslash
181 .Pq Dq \e
182 or newline character may be used to delimit the regular expression.
183 Also, putting a backslash character before the delimiting character
184 causes the character to be treated literally.
185 For example, in the context address \exabc\exdefx, the RE delimiter
186 is an
187 .Dq x
188 and the second
189 .Dq x
190 stands for itself, so that the regular expression is
191 .Dq abcxdef .
192 .Pp
193 .It
194 The escape sequence \en matches a newline character embedded in the
195 pattern space.
196 You can't, however, use a literal newline character in an address or
197 in the substitute command.
198 .El
199 .Pp
200 One special feature of
201 .Nm
202 regular expressions is that they can default to the last regular
203 expression used.
204 If a regular expression is empty, i.e. just the delimiter characters
205 are specified, the last regular expression encountered is used instead.
206 The last regular expression is defined as the last regular expression
207 used as part of an address or substitute command, and at run-time, not
208 compile-time.
209 For example, the command
210 .Dq /abc/s//XXX/
211 will substitute
212 .Dq XXX
213 for the pattern
214 .Dq abc .
215 .Sh "Sed Functions"
216 In the following list of commands, the maximum number of permissible
217 addresses for each command is indicated by [0addr], [1addr], or [2addr],
218 representing zero, one, or two addresses.
219 .Pp
220 The argument
221 .Em text
222 consists of one or more lines.
223 To embed a newline in the text, precede it with a backslash.
224 Other backslashes in text are deleted and the following character
225 taken literally.
226 .Pp
227 The
228 .Dq r
229 and
230 .Dq w
231 functions take an optional file parameter, which should be separated
232 from the function letter by white space.
233 Each file given as an argument to
234 .Nm
235 is created (or its contents truncated) before any input processing begins.
236 .Pp
237 The
238 .Dq b ,
239 .Dq r ,
240 .Dq s ,
241 .Dq t ,
242 .Dq w ,
243 .Dq y ,
244 .Dq \&! ,
245 and
246 .Dq \&:
247 functions all accept additional arguments.
248 The following synopses indicate which arguments have to be separated from
249 the function letters by white space characters.
250 .Pp
251 Two of the functions take a function-list.
252 This is a list of
253 .Nm
254 functions separated by newlines, as follows:
255 .Bd -literal -offset indent
256 { function
257   function
258   ...
259   function
260 }
261 .Ed
262 .Pp
263 The
264 .Dq {
265 can be preceded by white space and can be followed by white space.
266 The function can be preceded by white space.
267 The terminating
268 .Dq }
269 must be preceded by a newline or optional white space.
270 .Pp
271 .Bl -tag -width "XXXXXX" -compact
272 .It [2addr] function-list
273 Execute function-list only when the pattern space is selected.
274 .Pp
275 .It [1addr]a\e
276 .It text
277 Write
278 .Em text
279 to standard output immediately before each attempt to read a line of input,
280 whether by executing the
281 .Dq N
282 function or by beginning a new cycle.
283 .Pp
284 .It [2addr]b[label]
285 Branch to the
286 .Dq \&:
287 function with the specified label.
288 If the label is not specified, branch to the end of the script.
289 .Pp
290 .It [2addr]c\e
291 .It text
292 Delete the pattern space.
293 With 0 or 1 address or at the end of a 2-address range,
294 .Em text
295 is written to the standard output.
296 .Pp
297 .It [2addr]d
298 Delete the pattern space and start the next cycle.
299 .Pp
300 .It [2addr]D
301 Delete the initial segment of the pattern space through the first
302 newline character and start the next cycle.
303 .Pp
304 .It [2addr]g
305 Replace the contents of the pattern space with the contents of the
306 hold space.
307 .Pp
308 .It [2addr]G
309 Append a newline character followed by the contents of the hold space
310 to the pattern space.
311 .Pp
312 .It [2addr]h
313 Replace the contents of the hold space with the contents of the
314 pattern space.
315 .Pp
316 .It [2addr]H
317 Append a newline character followed by the contents of the pattern space
318 to the hold space.
319 .Pp
320 .It [1addr]i\e
321 .It text
322 Write
323 .Em text
324 to the standard output.
325 .Pp
326 .It [2addr]l
327 (The letter ell.)
328 Write the pattern space to the standard output in a visually unambiguous
329 form.
330 This form is as follows:
331 .Pp
332 .Bl -tag -width "carriage-returnXX" -offset indent -compact
333 .It backslash
334 \e\e
335 .It alert
336 \ea
337 .It form-feed
338 \ef
339 .It newline
340 \en
341 .It carriage-return
342 \er
343 .It tab
344 \et
345 .It vertical tab
346 \ev
347 .El
348 .Pp
349 Nonprintable characters are written as three-digit octal numbers (with a
350 preceding backslash) for each byte in the character (most significant byte
351 first).
352 Long lines are folded, with the point of folding indicated by displaying
353 a backslash followed by a newline.
354 The end of each line is marked with a
355 .Dq $ .
356 .Pp
357 .It [2addr]n
358 Write the pattern space to the standard output if the default output has
359 not been suppressed, and replace the pattern space with the next line of
360 input.
361 .Pp
362 .It [2addr]N
363 Append the next line of input to the pattern space, using an embedded
364 newline character to separate the appended material from the original
365 contents.
366 Note that the current line number changes.
367 .Pp
368 .It [2addr]p
369 Write the pattern space to standard output.
370 .Pp
371 .It [2addr]P
372 Write the pattern space, up to the first newline character to the
373 standard output.
374 .Pp
375 .It [1addr]q
376 Branch to the end of the script and quit without starting a new cycle.
377 .Pp
378 .It [1addr]r file
379 Copy the contents of
380 .Em file
381 to the standard output immediately before the next attempt to read a
382 line of input.
383 If
384 .Em file
385 cannot be read for any reason, it is silently ignored and no error
386 condition is set.
387 .Pp
388 .It [2addr]s/regular expression/replacement/flags
389 Substitute the replacement string for the first instance of the regular
390 expression in the pattern space.
391 Any character other than backslash or newline can be used instead of
392 a slash to delimit the RE and the replacement.
393 Within the RE and the replacement, the RE delimiter itself can be used as
394 a literal character if it is preceded by a backslash.
395 .Pp
396 An ampersand
397 .Pq Dq &
398 appearing in the replacement is replaced by the string matching the RE.
399 The special meaning of
400 .Dq &
401 in this context can be suppressed by preceding it by a backslash.
402 The string
403 .Dq \e# ,
404 where
405 .Dq #
406 is a digit, is replaced by the text matched
407 by the corresponding backreference expression (see
408 .Xr re_format 7 ) .
409 .Pp
410 A line can be split by substituting a newline character into it.
411 To specify a newline character in the replacement string, precede it with
412 a backslash.
413 .Pp
414 The value of
415 .Em flags
416 in the substitute function is zero or more of the following:
417 .Bl -tag -width "XXXXXX" -offset indent
418 .It "0 ... 9"
419 Make the substitution only for the N'th occurrence of the regular
420 expression in the pattern space.
421 .It g
422 Make the substitution for all non-overlapping matches of the
423 regular expression, not just the first one.
424 .It p
425 Write the pattern space to standard output if a replacement was made.
426 If the replacement string is identical to that which it replaces, it
427 is still considered to have been a replacement.
428 .It w Em file
429 Append the pattern space to
430 .Em file
431 if a replacement was made.
432 If the replacement string is identical to that which it replaces, it
433 is still considered to have been a replacement.
434 .El
435 .Pp
436 .It [2addr]t [label]
437 Branch to the
438 .Dq \&:
439 function bearing the label if any substitutions have been made since the
440 most recent reading of an input line or execution of a
441 .Dq t
442 function.
443 If no label is specified, branch to the end of the script.
444 .Pp
445 .It [2addr]w Em file
446 Append the pattern space to the
447 .Em file .
448 .Pp
449 .It [2addr]x
450 Swap the contents of the pattern and hold spaces.
451 .Pp
452 .It [2addr]y/string1/string2/
453 Replace all occurrences of characters in
454 .Em string1
455 in the pattern space with the corresponding characters from
456 .Em string2 .
457 Any character other than a backslash or newline can be used instead of
458 a slash to delimit the strings.
459 Within
460 .Em string1
461 and
462 .Em string2 ,
463 a backslash followed by any character other than a newline is that literal
464 character, and a backslash followed by an ``n'' is replaced by a newline
465 character.
466 .Pp
467 .It [2addr]!function
468 .It [2addr]!function-list
469 Apply the function or function-list only to the lines that are
470 .Em not
471 selected by the address(es).
472 .Pp
473 .It [0addr]:label
474 This function does nothing; it bears a label to which the
475 .Dq b
476 and
477 .Dq t
478 commands may branch.
479 .Pp
480 .It [1addr]=
481 Write the line number to the standard output followed by a newline
482 character.
483 .Pp
484 .It [0addr]
485 Empty lines are ignored.
486 .Pp
487 .It [0addr]#
488 The
489 .Dq #
490 and the remainder of the line are ignored (treated as a comment), with
491 the single exception that if the first two characters in the file are
492 .Dq #n ,
493 the default output is suppressed.
494 This is the same as specifying the
495 .Fl n
496 option on the command line.
497 .El
498 .Sh DIAGNOSTICS
499 .Ex -std
500 .Sh SEE ALSO
501 .Xr awk 1 ,
502 .Xr ed 1 ,
503 .Xr grep 1 ,
504 .Xr regex 3 ,
505 .Xr re_format 7
506 .Sh HISTORY
507 A
508 .Nm
509 command appeared in
510 .At v7 .
511 .Sh STANDARDS
512 The
513 .Nm
514 function is expected to be a superset of the
515 .St -p1003.2
516 specification.