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