]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - usr.bin/sed/sed.1
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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 August 24, 2008
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 In the case when the second address is a context
215 address,
216 .Nm
217 does not re-match the second address against the
218 pattern space that matched the first address.
219 Starting at the
220 first line following the selected range,
221 .Nm
222 starts looking again for the first address.
223 .Pp
224 Editing commands can be applied to non-selected pattern spaces by use
225 of the exclamation character
226 .Pq Dq \&!
227 function.
228 .Sh "Sed Regular Expressions"
229 The regular expressions used in
230 .Nm ,
231 by default, are basic regular expressions (BREs, see
232 .Xr re_format 7
233 for more information), but extended (modern) regular expressions can be used
234 instead if the
235 .Fl E
236 flag is given.
237 In addition,
238 .Nm
239 has the following two additions to regular expressions:
240 .Pp
241 .Bl -enum -compact
242 .It
243 In a context address, any character other than a backslash
244 .Pq Dq \e
245 or newline character may be used to delimit the regular expression.
246 The opening delimiter needs to be preceded by a backslash
247 unless it is a slash.
248 For example, the context address
249 .Li \exabcx
250 is equivalent to
251 .Li /abc/ .
252 Also, putting a backslash character before the delimiting character
253 within the regular expression causes the character to be treated literally.
254 For example, in the context address
255 .Li \exabc\exdefx ,
256 the RE delimiter is an
257 .Dq x
258 and the second
259 .Dq x
260 stands for itself, so that the regular expression is
261 .Dq abcxdef .
262 .Pp
263 .It
264 The escape sequence \en matches a newline character embedded in the
265 pattern space.
266 You cannot, however, use a literal newline character in an address or
267 in the substitute command.
268 .El
269 .Pp
270 One special feature of
271 .Nm
272 regular expressions is that they can default to the last regular
273 expression used.
274 If a regular expression is empty, i.e., just the delimiter characters
275 are specified, the last regular expression encountered is used instead.
276 The last regular expression is defined as the last regular expression
277 used as part of an address or substitute command, and at run-time, not
278 compile-time.
279 For example, the command
280 .Dq /abc/s//XXX/
281 will substitute
282 .Dq XXX
283 for the pattern
284 .Dq abc .
285 .Sh "Sed Functions"
286 In the following list of commands, the maximum number of permissible
287 addresses for each command is indicated by [0addr], [1addr], or [2addr],
288 representing zero, one, or two addresses.
289 .Pp
290 The argument
291 .Em text
292 consists of one or more lines.
293 To embed a newline in the text, precede it with a backslash.
294 Other backslashes in text are deleted and the following character
295 taken literally.
296 .Pp
297 The
298 .Dq r
299 and
300 .Dq w
301 functions take an optional file parameter, which should be separated
302 from the function letter by white space.
303 Each file given as an argument to
304 .Nm
305 is created (or its contents truncated) before any input processing begins.
306 .Pp
307 The
308 .Dq b ,
309 .Dq r ,
310 .Dq s ,
311 .Dq t ,
312 .Dq w ,
313 .Dq y ,
314 .Dq \&! ,
315 and
316 .Dq \&:
317 functions all accept additional arguments.
318 The following synopses indicate which arguments have to be separated from
319 the function letters by white space characters.
320 .Pp
321 Two of the functions take a function-list.
322 This is a list of
323 .Nm
324 functions separated by newlines, as follows:
325 .Bd -literal -offset indent
326 { function
327   function
328   ...
329   function
330 }
331 .Ed
332 .Pp
333 The
334 .Dq {
335 can be preceded by white space and can be followed by white space.
336 The function can be preceded by white space.
337 The terminating
338 .Dq }
339 must be preceded by a newline or optional white space.
340 .Pp
341 .Bl -tag -width "XXXXXX" -compact
342 .It [2addr] function-list
343 Execute function-list only when the pattern space is selected.
344 .Pp
345 .It [1addr]a\e
346 .It text
347 Write
348 .Em text
349 to standard output immediately before each attempt to read a line of input,
350 whether by executing the
351 .Dq N
352 function or by beginning a new cycle.
353 .Pp
354 .It [2addr]b[label]
355 Branch to the
356 .Dq \&:
357 function with the specified label.
358 If the label is not specified, branch to the end of the script.
359 .Pp
360 .It [2addr]c\e
361 .It text
362 Delete the pattern space.
363 With 0 or 1 address or at the end of a 2-address range,
364 .Em text
365 is written to the standard output.
366 .Pp
367 .It [2addr]d
368 Delete the pattern space and start the next cycle.
369 .Pp
370 .It [2addr]D
371 Delete the initial segment of the pattern space through the first
372 newline character and start the next cycle.
373 .Pp
374 .It [2addr]g
375 Replace the contents of the pattern space with the contents of the
376 hold space.
377 .Pp
378 .It [2addr]G
379 Append a newline character followed by the contents of the hold space
380 to the pattern space.
381 .Pp
382 .It [2addr]h
383 Replace the contents of the hold space with the contents of the
384 pattern space.
385 .Pp
386 .It [2addr]H
387 Append a newline character followed by the contents of the pattern space
388 to the hold space.
389 .Pp
390 .It [1addr]i\e
391 .It text
392 Write
393 .Em text
394 to the standard output.
395 .Pp
396 .It [2addr]l
397 (The letter ell.)
398 Write the pattern space to the standard output in a visually unambiguous
399 form.
400 This form is as follows:
401 .Pp
402 .Bl -tag -width "carriage-returnXX" -offset indent -compact
403 .It backslash
404 \e\e
405 .It alert
406 \ea
407 .It form-feed
408 \ef
409 .It carriage-return
410 \er
411 .It tab
412 \et
413 .It vertical tab
414 \ev
415 .El
416 .Pp
417 Nonprintable characters are written as three-digit octal numbers (with a
418 preceding backslash) for each byte in the character (most significant byte
419 first).
420 Long lines are folded, with the point of folding indicated by displaying
421 a backslash followed by a newline.
422 The end of each line is marked with a
423 .Dq $ .
424 .Pp
425 .It [2addr]n
426 Write the pattern space to the standard output if the default output has
427 not been suppressed, and replace the pattern space with the next line of
428 input.
429 .Pp
430 .It [2addr]N
431 Append the next line of input to the pattern space, using an embedded
432 newline character to separate the appended material from the original
433 contents.
434 Note that the current line number changes.
435 .Pp
436 .It [2addr]p
437 Write the pattern space to standard output.
438 .Pp
439 .It [2addr]P
440 Write the pattern space, up to the first newline character to the
441 standard output.
442 .Pp
443 .It [1addr]q
444 Branch to the end of the script and quit without starting a new cycle.
445 .Pp
446 .It [1addr]r file
447 Copy the contents of
448 .Em file
449 to the standard output immediately before the next attempt to read a
450 line of input.
451 If
452 .Em file
453 cannot be read for any reason, it is silently ignored and no error
454 condition is set.
455 .Pp
456 .It [2addr]s/regular expression/replacement/flags
457 Substitute the replacement string for the first instance of the regular
458 expression in the pattern space.
459 Any character other than backslash or newline can be used instead of
460 a slash to delimit the RE and the replacement.
461 Within the RE and the replacement, the RE delimiter itself can be used as
462 a literal character if it is preceded by a backslash.
463 .Pp
464 An ampersand
465 .Pq Dq &
466 appearing in the replacement is replaced by the string matching the RE.
467 The special meaning of
468 .Dq &
469 in this context can be suppressed by preceding it by a backslash.
470 The string
471 .Dq \e# ,
472 where
473 .Dq #
474 is a digit, is replaced by the text matched
475 by the corresponding backreference expression (see
476 .Xr re_format 7 ) .
477 .Pp
478 A line can be split by substituting a newline character into it.
479 To specify a newline character in the replacement string, precede it with
480 a backslash.
481 .Pp
482 The value of
483 .Em flags
484 in the substitute function is zero or more of the following:
485 .Bl -tag -width "XXXXXX" -offset indent
486 .It Ar N
487 Make the substitution only for the
488 .Ar N Ns 'th
489 occurrence of the regular expression in the pattern space.
490 .It g
491 Make the substitution for all non-overlapping matches of the
492 regular expression, not just the first one.
493 .It p
494 Write the pattern space to standard output if a replacement was made.
495 If the replacement string is identical to that which it replaces, it
496 is still considered to have been a replacement.
497 .It w Em file
498 Append the pattern space to
499 .Em file
500 if a replacement was made.
501 If the replacement string is identical to that which it replaces, it
502 is still considered to have been a replacement.
503 .It I
504 Match the regular expression in a case-insensitive way.
505 .El
506 .Pp
507 .It [2addr]t [label]
508 Branch to the
509 .Dq \&:
510 function bearing the label if any substitutions have been made since the
511 most recent reading of an input line or execution of a
512 .Dq t
513 function.
514 If no label is specified, branch to the end of the script.
515 .Pp
516 .It [2addr]w Em file
517 Append the pattern space to the
518 .Em file .
519 .Pp
520 .It [2addr]x
521 Swap the contents of the pattern and hold spaces.
522 .Pp
523 .It [2addr]y/string1/string2/
524 Replace all occurrences of characters in
525 .Em string1
526 in the pattern space with the corresponding characters from
527 .Em string2 .
528 Any character other than a backslash or newline can be used instead of
529 a slash to delimit the strings.
530 Within
531 .Em string1
532 and
533 .Em string2 ,
534 a backslash followed by any character other than a newline is that literal
535 character, and a backslash followed by an ``n'' is replaced by a newline
536 character.
537 .Pp
538 .It [2addr]!function
539 .It [2addr]!function-list
540 Apply the function or function-list only to the lines that are
541 .Em not
542 selected by the address(es).
543 .Pp
544 .It [0addr]:label
545 This function does nothing; it bears a label to which the
546 .Dq b
547 and
548 .Dq t
549 commands may branch.
550 .Pp
551 .It [1addr]=
552 Write the line number to the standard output followed by a newline
553 character.
554 .Pp
555 .It [0addr]
556 Empty lines are ignored.
557 .Pp
558 .It [0addr]#
559 The
560 .Dq #
561 and the remainder of the line are ignored (treated as a comment), with
562 the single exception that if the first two characters in the file are
563 .Dq #n ,
564 the default output is suppressed.
565 This is the same as specifying the
566 .Fl n
567 option on the command line.
568 .El
569 .Sh ENVIRONMENT
570 The
571 .Ev COLUMNS , LANG , LC_ALL , LC_CTYPE
572 and
573 .Ev LC_COLLATE
574 environment variables affect the execution of
575 .Nm
576 as described in
577 .Xr environ 7 .
578 .Sh EXIT STATUS
579 .Ex -std
580 .Sh SEE ALSO
581 .Xr awk 1 ,
582 .Xr ed 1 ,
583 .Xr grep 1 ,
584 .Xr regex 3 ,
585 .Xr re_format 7
586 .Sh STANDARDS
587 The
588 .Nm
589 utility is expected to be a superset of the
590 .St -p1003.2
591 specification.
592 .Pp
593 The
594 .Fl E , I , a
595 and
596 .Fl i
597 options, as well as the
598 .Dq I
599 flag to the address regular expression and substitution command are
600 non-standard
601 .Fx
602 extensions and may not be available on other operating systems.
603 .Sh HISTORY
604 A
605 .Nm
606 command, written by
607 .An L. E. McMahon ,
608 appeared in
609 .At v7 .
610 .Sh AUTHORS
611 .An "Diomidis D. Spinellis" Aq dds@FreeBSD.org
612 .Sh BUGS
613 Multibyte characters containing a byte with value 0x5C
614 .Tn ( ASCII
615 .Ql \e )
616 may be incorrectly treated as line continuation characters in arguments to the
617 .Dq a ,
618 .Dq c
619 and
620 .Dq i
621 commands.
622 Multibyte characters cannot be used as delimiters with the
623 .Dq s
624 and
625 .Dq y
626 commands.