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