]> CyberLeo.Net >> Repos - FreeBSD/releng/8.0.git/blob - usr.bin/sed/sed.1
Adjust to reflect 8.0-RELEASE.
[FreeBSD/releng/8.0.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 .\" 4. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .\"     @(#)sed.1       8.2 (Berkeley) 12/30/93
32 .\" $FreeBSD$
33 .\"
34 .Dd May 24, 2009
35 .Dt SED 1
36 .Os
37 .Sh NAME
38 .Nm sed
39 .Nd stream editor
40 .Sh SYNOPSIS
41 .Nm
42 .Op Fl Ealn
43 .Ar command
44 .Op Ar
45 .Nm
46 .Op Fl Ealn
47 .Op Fl e Ar command
48 .Op Fl f Ar command_file
49 .Op Fl I Ar extension
50 .Op Fl i Ar extension
51 .Op Ar
52 .Sh DESCRIPTION
53 The
54 .Nm
55 utility reads the specified files, or the standard input if no files
56 are specified, modifying the input as specified by a list of commands.
57 The input is then written to the standard output.
58 .Pp
59 A single command may be specified as the first argument to
60 .Nm .
61 Multiple commands may be specified by using the
62 .Fl e
63 or
64 .Fl f
65 options.
66 All commands are applied to the input in the order they are specified
67 regardless of their origin.
68 .Pp
69 The following options are available:
70 .Bl -tag -width indent
71 .It Fl E
72 Interpret regular expressions as extended (modern) regular expressions
73 rather than basic regular expressions (BRE's).
74 The
75 .Xr re_format 7
76 manual page fully describes both formats.
77 .It Fl a
78 The files listed as parameters for the
79 .Dq w
80 functions are created (or truncated) before any processing begins,
81 by default.
82 The
83 .Fl a
84 option causes
85 .Nm
86 to delay opening each file until a command containing the related
87 .Dq w
88 function is applied to a line of input.
89 .It Fl e Ar command
90 Append the editing commands specified by the
91 .Ar command
92 argument
93 to the list of commands.
94 .It Fl f Ar command_file
95 Append the editing commands found in the file
96 .Ar command_file
97 to the list of commands.
98 The editing commands should each be listed on a separate line.
99 .It Fl I Ar extension
100 Edit files in-place, saving backups with the specified
101 .Ar extension .
102 If a zero-length
103 .Ar extension
104 is given, no backup will be saved.
105 It is not recommended to give a zero-length
106 .Ar extension
107 when in-place editing files, as you risk corruption or partial content
108 in situations where disk space is exhausted, etc.
109 .Pp
110 Note that in-place editing with
111 .Fl I
112 still takes place in a single continuous line address space covering
113 all files, although each file preserves its individuality instead of
114 forming one output stream.
115 The line counter is never reset between files, address ranges can span
116 file boundaries, and the
117 .Dq $
118 address matches only the last line of the last file.
119 (See
120 .Sx "Sed Addresses" . )
121 That can lead to unexpected results in many cases of in-place editing,
122 where using
123 .Fl i
124 is desired.
125 .It Fl i Ar extension
126 Edit files in-place similarly to
127 .Fl I ,
128 but treat each file independently from other files.
129 In particular, line numbers in each file start at 1,
130 the
131 .Dq $
132 address matches the last line of the current file,
133 and address ranges are limited to the current file.
134 (See
135 .Sx "Sed Addresses" . )
136 The net result is as though each file were edited by a separate
137 .Nm
138 instance.
139 .It Fl l
140 Make output line buffered.
141 .It Fl n
142 By default, each line of input is echoed to the standard output after
143 all of the commands have been applied to it.
144 The
145 .Fl n
146 option suppresses this behavior.
147 .El
148 .Pp
149 The form of a
150 .Nm
151 command is as follows:
152 .Pp
153 .Dl [address[,address]]function[arguments]
154 .Pp
155 Whitespace may be inserted before the first address and the function
156 portions of the command.
157 .Pp
158 Normally,
159 .Nm
160 cyclically copies a line of input, not including its terminating newline
161 character, into a
162 .Em "pattern space" ,
163 (unless there is something left after a
164 .Dq D
165 function),
166 applies all of the commands with addresses that select that pattern space,
167 copies the pattern space to the standard output, appending a newline, and
168 deletes the pattern space.
169 .Pp
170 Some of the functions use a
171 .Em "hold space"
172 to save all or part of the pattern space for subsequent retrieval.
173 .Sh "Sed Addresses"
174 An address is not required, but if specified must have one of the
175 following formats:
176 .Bl -bullet -offset indent
177 .It
178 a number that counts
179 input lines
180 cumulatively across input files (or in each file independently
181 if a
182 .Fl i
183 option is in effect);
184 .It
185 a dollar
186 .Pq Dq $
187 character that addresses the last line of input (or the last line
188 of the current file if a
189 .Fl i
190 option was specified);
191 .It
192 a context address
193 that consists of a regular expression preceded and followed by a
194 delimiter. The closing delimiter can also optionally be followed by the 
195 .Dq I
196 character, to indicate that the regular expression is to be matched
197 in a case-insensitive way.
198 .El
199 .Pp
200 A command line with no addresses selects every pattern space.
201 .Pp
202 A command line with one address selects all of the pattern spaces
203 that match the address.
204 .Pp
205 A command line with two addresses selects an inclusive range.
206 This
207 range starts with the first pattern space that matches the first
208 address.
209 The end of the range is the next following pattern space
210 that matches the second address.
211 If the second address is a number
212 less than or equal to the line number first selected, only that
213 line is selected.
214 The number in the second address may be prefixed with a
215 .Pq Dq \&+
216 to specify the number of lines to match after the first pattern.
217 In the case when the second address is a context
218 address,
219 .Nm
220 does not re-match the second address against the
221 pattern space that matched the first address.
222 Starting at the
223 first line following the selected range,
224 .Nm
225 starts looking again for the first address.
226 .Pp
227 Editing commands can be applied to non-selected pattern spaces by use
228 of the exclamation character
229 .Pq Dq \&!
230 function.
231 .Sh "Sed Regular Expressions"
232 The regular expressions used in
233 .Nm ,
234 by default, are basic regular expressions (BREs, see
235 .Xr re_format 7
236 for more information), but extended (modern) regular expressions can be used
237 instead if the
238 .Fl E
239 flag is given.
240 In addition,
241 .Nm
242 has the following two additions to regular expressions:
243 .Pp
244 .Bl -enum -compact
245 .It
246 In a context address, any character other than a backslash
247 .Pq Dq \e
248 or newline character may be used to delimit the regular expression.
249 The opening delimiter needs to be preceded by a backslash
250 unless it is a slash.
251 For example, the context address
252 .Li \exabcx
253 is equivalent to
254 .Li /abc/ .
255 Also, putting a backslash character before the delimiting character
256 within the regular expression causes the character to be treated literally.
257 For example, in the context address
258 .Li \exabc\exdefx ,
259 the RE delimiter is an
260 .Dq x
261 and the second
262 .Dq x
263 stands for itself, so that the regular expression is
264 .Dq abcxdef .
265 .Pp
266 .It
267 The escape sequence \en matches a newline character embedded in the
268 pattern space.
269 You cannot, however, use a literal newline character in an address or
270 in the substitute command.
271 .El
272 .Pp
273 One special feature of
274 .Nm
275 regular expressions is that they can default to the last regular
276 expression used.
277 If a regular expression is empty, i.e., just the delimiter characters
278 are specified, the last regular expression encountered is used instead.
279 The last regular expression is defined as the last regular expression
280 used as part of an address or substitute command, and at run-time, not
281 compile-time.
282 For example, the command
283 .Dq /abc/s//XXX/
284 will substitute
285 .Dq XXX
286 for the pattern
287 .Dq abc .
288 .Sh "Sed Functions"
289 In the following list of commands, the maximum number of permissible
290 addresses for each command is indicated by [0addr], [1addr], or [2addr],
291 representing zero, one, or two addresses.
292 .Pp
293 The argument
294 .Em text
295 consists of one or more lines.
296 To embed a newline in the text, precede it with a backslash.
297 Other backslashes in text are deleted and the following character
298 taken literally.
299 .Pp
300 The
301 .Dq r
302 and
303 .Dq w
304 functions take an optional file parameter, which should be separated
305 from the function letter by white space.
306 Each file given as an argument to
307 .Nm
308 is created (or its contents truncated) before any input processing begins.
309 .Pp
310 The
311 .Dq b ,
312 .Dq r ,
313 .Dq s ,
314 .Dq t ,
315 .Dq w ,
316 .Dq y ,
317 .Dq \&! ,
318 and
319 .Dq \&:
320 functions all accept additional arguments.
321 The following synopses indicate which arguments have to be separated from
322 the function letters by white space characters.
323 .Pp
324 Two of the functions take a function-list.
325 This is a list of
326 .Nm
327 functions separated by newlines, as follows:
328 .Bd -literal -offset indent
329 { function
330   function
331   ...
332   function
333 }
334 .Ed
335 .Pp
336 The
337 .Dq {
338 can be preceded by white space and can be followed by white space.
339 The function can be preceded by white space.
340 The terminating
341 .Dq }
342 must be preceded by a newline or optional white space.
343 .Pp
344 .Bl -tag -width "XXXXXX" -compact
345 .It [2addr] function-list
346 Execute function-list only when the pattern space is selected.
347 .Pp
348 .It [1addr]a\e
349 .It text
350 Write
351 .Em text
352 to standard output immediately before each attempt to read a line of input,
353 whether by executing the
354 .Dq N
355 function or by beginning a new cycle.
356 .Pp
357 .It [2addr]b[label]
358 Branch to the
359 .Dq \&:
360 function with the specified label.
361 If the label is not specified, branch to the end of the script.
362 .Pp
363 .It [2addr]c\e
364 .It text
365 Delete the pattern space.
366 With 0 or 1 address or at the end of a 2-address range,
367 .Em text
368 is written to the standard output.
369 .Pp
370 .It [2addr]d
371 Delete the pattern space and start the next cycle.
372 .Pp
373 .It [2addr]D
374 Delete the initial segment of the pattern space through the first
375 newline character and start the next cycle.
376 .Pp
377 .It [2addr]g
378 Replace the contents of the pattern space with the contents of the
379 hold space.
380 .Pp
381 .It [2addr]G
382 Append a newline character followed by the contents of the hold space
383 to the pattern space.
384 .Pp
385 .It [2addr]h
386 Replace the contents of the hold space with the contents of the
387 pattern space.
388 .Pp
389 .It [2addr]H
390 Append a newline character followed by the contents of the pattern space
391 to the hold space.
392 .Pp
393 .It [1addr]i\e
394 .It text
395 Write
396 .Em text
397 to the standard output.
398 .Pp
399 .It [2addr]l
400 (The letter ell.)
401 Write the pattern space to the standard output in a visually unambiguous
402 form.
403 This form is as follows:
404 .Pp
405 .Bl -tag -width "carriage-returnXX" -offset indent -compact
406 .It backslash
407 \e\e
408 .It alert
409 \ea
410 .It form-feed
411 \ef
412 .It carriage-return
413 \er
414 .It tab
415 \et
416 .It vertical tab
417 \ev
418 .El
419 .Pp
420 Nonprintable characters are written as three-digit octal numbers (with a
421 preceding backslash) for each byte in the character (most significant byte
422 first).
423 Long lines are folded, with the point of folding indicated by displaying
424 a backslash followed by a newline.
425 The end of each line is marked with a
426 .Dq $ .
427 .Pp
428 .It [2addr]n
429 Write the pattern space to the standard output if the default output has
430 not been suppressed, and replace the pattern space with the next line of
431 input.
432 .Pp
433 .It [2addr]N
434 Append the next line of input to the pattern space, using an embedded
435 newline character to separate the appended material from the original
436 contents.
437 Note that the current line number changes.
438 .Pp
439 .It [2addr]p
440 Write the pattern space to standard output.
441 .Pp
442 .It [2addr]P
443 Write the pattern space, up to the first newline character to the
444 standard output.
445 .Pp
446 .It [1addr]q
447 Branch to the end of the script and quit without starting a new cycle.
448 .Pp
449 .It [1addr]r file
450 Copy the contents of
451 .Em file
452 to the standard output immediately before the next attempt to read a
453 line of input.
454 If
455 .Em file
456 cannot be read for any reason, it is silently ignored and no error
457 condition is set.
458 .Pp
459 .It [2addr]s/regular expression/replacement/flags
460 Substitute the replacement string for the first instance of the regular
461 expression in the pattern space.
462 Any character other than backslash or newline can be used instead of
463 a slash to delimit the RE and the replacement.
464 Within the RE and the replacement, the RE delimiter itself can be used as
465 a literal character if it is preceded by a backslash.
466 .Pp
467 An ampersand
468 .Pq Dq &
469 appearing in the replacement is replaced by the string matching the RE.
470 The special meaning of
471 .Dq &
472 in this context can be suppressed by preceding it by a backslash.
473 The string
474 .Dq \e# ,
475 where
476 .Dq #
477 is a digit, is replaced by the text matched
478 by the corresponding backreference expression (see
479 .Xr re_format 7 ) .
480 .Pp
481 A line can be split by substituting a newline character into it.
482 To specify a newline character in the replacement string, precede it with
483 a backslash.
484 .Pp
485 The value of
486 .Em flags
487 in the substitute function is zero or more of the following:
488 .Bl -tag -width "XXXXXX" -offset indent
489 .It Ar N
490 Make the substitution only for the
491 .Ar N Ns 'th
492 occurrence of the regular expression in the pattern space.
493 .It g
494 Make the substitution for all non-overlapping matches of the
495 regular expression, not just the first one.
496 .It p
497 Write the pattern space to standard output if a replacement was made.
498 If the replacement string is identical to that which it replaces, it
499 is still considered to have been a replacement.
500 .It w Em file
501 Append the pattern space to
502 .Em file
503 if a replacement was made.
504 If the replacement string is identical to that which it replaces, it
505 is still considered to have been a replacement.
506 .It I
507 Match the regular expression in a case-insensitive way.
508 .El
509 .Pp
510 .It [2addr]t [label]
511 Branch to the
512 .Dq \&:
513 function bearing the label if any substitutions have been made since the
514 most recent reading of an input line or execution of a
515 .Dq t
516 function.
517 If no label is specified, branch to the end of the script.
518 .Pp
519 .It [2addr]w Em file
520 Append the pattern space to the
521 .Em file .
522 .Pp
523 .It [2addr]x
524 Swap the contents of the pattern and hold spaces.
525 .Pp
526 .It [2addr]y/string1/string2/
527 Replace all occurrences of characters in
528 .Em string1
529 in the pattern space with the corresponding characters from
530 .Em string2 .
531 Any character other than a backslash or newline can be used instead of
532 a slash to delimit the strings.
533 Within
534 .Em string1
535 and
536 .Em string2 ,
537 a backslash followed by any character other than a newline is that literal
538 character, and a backslash followed by an ``n'' is replaced by a newline
539 character.
540 .Pp
541 .It [2addr]!function
542 .It [2addr]!function-list
543 Apply the function or function-list only to the lines that are
544 .Em not
545 selected by the address(es).
546 .Pp
547 .It [0addr]:label
548 This function does nothing; it bears a label to which the
549 .Dq b
550 and
551 .Dq t
552 commands may branch.
553 .Pp
554 .It [1addr]=
555 Write the line number to the standard output followed by a newline
556 character.
557 .Pp
558 .It [0addr]
559 Empty lines are ignored.
560 .Pp
561 .It [0addr]#
562 The
563 .Dq #
564 and the remainder of the line are ignored (treated as a comment), with
565 the single exception that if the first two characters in the file are
566 .Dq #n ,
567 the default output is suppressed.
568 This is the same as specifying the
569 .Fl n
570 option on the command line.
571 .El
572 .Sh ENVIRONMENT
573 The
574 .Ev COLUMNS , LANG , LC_ALL , LC_CTYPE
575 and
576 .Ev LC_COLLATE
577 environment variables affect the execution of
578 .Nm
579 as described in
580 .Xr environ 7 .
581 .Sh EXIT STATUS
582 .Ex -std
583 .Sh SEE ALSO
584 .Xr awk 1 ,
585 .Xr ed 1 ,
586 .Xr grep 1 ,
587 .Xr regex 3 ,
588 .Xr re_format 7
589 .Sh STANDARDS
590 The
591 .Nm
592 utility is expected to be a superset of the
593 .St -p1003.2
594 specification.
595 .Pp
596 The
597 .Fl E , I , a
598 and
599 .Fl i
600 options, the prefixing
601 .Dq \&+
602 in the second member of an address range,
603 as well as the
604 .Dq I
605 flag to the address regular expression and substitution command are
606 non-standard
607 .Fx
608 extensions and may not be available on other operating systems.
609 .Sh HISTORY
610 A
611 .Nm
612 command, written by
613 .An L. E. McMahon ,
614 appeared in
615 .At v7 .
616 .Sh AUTHORS
617 .An "Diomidis D. Spinellis" Aq dds@FreeBSD.org
618 .Sh BUGS
619 Multibyte characters containing a byte with value 0x5C
620 .Tn ( ASCII
621 .Ql \e )
622 may be incorrectly treated as line continuation characters in arguments to the
623 .Dq a ,
624 .Dq c
625 and
626 .Dq i
627 commands.
628 Multibyte characters cannot be used as delimiters with the
629 .Dq s
630 and
631 .Dq y
632 commands.