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