[BACK]Return to sed.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / sed

Annotation of src/usr.bin/sed/sed.1, Revision 1.49

1.49    ! schwarze    1: .\"    $OpenBSD: sed.1,v 1.48 2016/03/17 05:27:10 bentley Exp $
1.12      aaron       2: .\"
1.1       deraadt     3: .\" Copyright (c) 1992, 1993
                      4: .\"    The Regents of the University of California.  All rights reserved.
                      5: .\"
                      6: .\" This code is derived from software contributed to Berkeley by
                      7: .\" the Institute of Electrical and Electronics Engineers, Inc.
                      8: .\"
                      9: .\" Redistribution and use in source and binary forms, with or without
                     10: .\" modification, are permitted provided that the following conditions
                     11: .\" are met:
                     12: .\" 1. Redistributions of source code must retain the above copyright
                     13: .\"    notice, this list of conditions and the following disclaimer.
                     14: .\" 2. Redistributions in binary form must reproduce the above copyright
                     15: .\"    notice, this list of conditions and the following disclaimer in the
                     16: .\"    documentation and/or other materials provided with the distribution.
1.17      millert    17: .\" 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    18: .\"    may be used to endorse or promote products derived from this software
                     19: .\"    without specific prior written permission.
                     20: .\"
                     21: .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     22: .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     23: .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     24: .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     25: .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     26: .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     27: .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     28: .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     29: .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     30: .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     31: .\" SUCH DAMAGE.
                     32: .\"
                     33: .\"    from: @(#)sed.1 8.2 (Berkeley) 12/30/93
                     34: .\"
1.49    ! schwarze   35: .Dd $Mdocdate: March 17 2016 $
1.1       deraadt    36: .Dt SED 1
                     37: .Os
                     38: .Sh NAME
                     39: .Nm sed
                     40: .Nd stream editor
                     41: .Sh SYNOPSIS
                     42: .Nm sed
1.34      jmc        43: .Op Fl aEnru
1.46      jmc        44: .Op Fl i Ns Op Ar extension
1.1       deraadt    45: .Ar command
1.29      sobrado    46: .Op Ar
1.1       deraadt    47: .Nm sed
1.33      djm        48: .Op Fl aEnru
1.1       deraadt    49: .Op Fl e Ar command
                     50: .Op Fl f Ar command_file
1.45      jasper     51: .Op Fl i Ns Op Ar extension
1.29      sobrado    52: .Op Ar
1.1       deraadt    53: .Sh DESCRIPTION
                     54: The
1.8       aaron      55: .Nm
1.1       deraadt    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 sed .
1.25      jmc        62: Multiple commands may be specified
                     63: separated by newlines or semicolons,
                     64: or by using the
1.1       deraadt    65: .Fl e
                     66: or
                     67: .Fl f
                     68: options.
                     69: All commands are applied to the input in the order they are specified
                     70: regardless of their origin.
                     71: .Pp
1.10      aaron      72: The options are as follows:
1.16      aaron      73: .Bl -tag -width Ds
1.1       deraadt    74: .It Fl a
                     75: The files listed as parameters for the
1.41      jmc        76: .Ic w
                     77: function or flag are created (or truncated) before any processing begins,
1.1       deraadt    78: by default.
                     79: The
                     80: .Fl a
                     81: option causes
1.8       aaron      82: .Nm
1.1       deraadt    83: to delay opening each file until a command containing the related
1.41      jmc        84: .Ic w
                     85: function or flag is applied to a line of input.
1.34      jmc        86: .It Fl E
                     87: Interpret regular expressions using POSIX extended regular expression syntax.
                     88: The default behaviour is to use POSIX basic regular expression syntax.
1.1       deraadt    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.
1.46      jmc        99: .It Fl i Ns Op Ar extension
                    100: Edit files in place, saving backups with the specified
1.45      jasper    101: .Ar extension .
1.46      jmc       102: If a zero length
1.45      jasper    103: .Ar extension
                    104: is given, no backup will be saved.
1.46      jmc       105: It is not recommended to give a zero length
1.45      jasper    106: .Ar extension
1.46      jmc       107: when in place editing files, as it risks corruption or partial content
1.45      jasper    108: in situations where disk space is exhausted, etc.
1.33      djm       109: .It Fl r
1.34      jmc       110: An alias for
                    111: .Fl E ,
                    112: for compatibility with GNU sed.
1.1       deraadt   113: .It Fl n
                    114: By default, each line of input is echoed to the standard output after
                    115: all of the commands have been applied to it.
                    116: The
                    117: .Fl n
                    118: option suppresses this behavior.
1.26      ray       119: .It Fl u
                    120: Force output to be line buffered,
                    121: printing each line as it becomes available.
                    122: By default, output is line buffered when standard output is a terminal
                    123: and block buffered otherwise.
                    124: See
1.47      tedu      125: .Xr setvbuf 3
1.26      ray       126: for a more detailed explanation.
1.1       deraadt   127: .El
                    128: .Pp
                    129: The form of a
1.8       aaron     130: .Nm
1.1       deraadt   131: command is as follows:
1.21      jmc       132: .Pp
1.1       deraadt   133: .Dl [address[,address]]function[arguments]
1.21      jmc       134: .Pp
1.1       deraadt   135: Whitespace may be inserted before the first address and the function
                    136: portions of the command.
                    137: .Pp
                    138: Normally,
1.8       aaron     139: .Nm
1.1       deraadt   140: cyclically copies a line of input, not including its terminating newline
                    141: character, into a
1.21      jmc       142: .Em pattern space ,
1.1       deraadt   143: (unless there is something left after a
1.37      jmc       144: .Ic D
1.1       deraadt   145: function),
                    146: applies all of the commands with addresses that select that pattern space,
                    147: copies the pattern space to the standard output, appending a newline, and
                    148: deletes the pattern space.
                    149: .Pp
                    150: Some of the functions use a
1.21      jmc       151: .Em hold space
1.1       deraadt   152: to save all or part of the pattern space for subsequent retrieval.
1.21      jmc       153: .Sh SED ADDRESSES
1.1       deraadt   154: An address is not required, but if specified must be a number (that counts
                    155: input lines
1.21      jmc       156: cumulatively across input files), a dollar character
1.8       aaron     157: .Pq Ql $
1.21      jmc       158: that addresses the last line of input, or a context address
1.1       deraadt   159: (which consists of a regular expression preceded and followed by a
                    160: delimiter).
                    161: .Pp
                    162: A command line with no addresses selects every pattern space.
                    163: .Pp
                    164: A command line with one address selects all of the pattern spaces
                    165: that match the address.
                    166: .Pp
                    167: A command line with two addresses selects the inclusive range from
                    168: the first pattern space that matches the first address through the next
                    169: pattern space that matches the second.
                    170: (If the second address is a number less than or equal to the line number
                    171: first selected, only that line is selected.)
                    172: Starting at the first line following the selected range,
1.8       aaron     173: .Nm
1.1       deraadt   174: starts looking again for the first address.
                    175: .Pp
                    176: Editing commands can be applied to non-selected pattern spaces by use
                    177: of the exclamation character
1.18      jmc       178: .Pq Ql \&!
1.1       deraadt   179: function.
1.21      jmc       180: .Sh SED REGULAR EXPRESSIONS
1.34      jmc       181: By default,
1.8       aaron     182: .Nm
1.23      jmc       183: regular expressions are basic regular expressions
                    184: .Pq BREs .
1.34      jmc       185: Extended regular expressions are supported using the
                    186: .Fl E
                    187: and
                    188: .Fl r
                    189: options.
1.23      jmc       190: See
1.19      jmc       191: .Xr re_format 7
1.23      jmc       192: for more information on regular expressions.
1.1       deraadt   193: In addition,
1.8       aaron     194: .Nm
1.23      jmc       195: has the following two additions to BREs:
1.21      jmc       196: .Pp
1.1       deraadt   197: .Bl -enum -compact
                    198: .It
                    199: In a context address, any character other than a backslash
1.8       aaron     200: .Pq Ql \e
1.1       deraadt   201: or newline character may be used to delimit the regular expression.
1.30      jmc       202: The opening delimiter should be preceded by a backslash
                    203: unless it is a slash.
                    204: Putting a backslash character before the delimiting character
1.1       deraadt   205: causes the character to be treated literally.
                    206: For example, in the context address \exabc\exdefx, the RE delimiter
                    207: is an
1.8       aaron     208: .Sq x
1.1       deraadt   209: and the second
1.8       aaron     210: .Sq x
1.1       deraadt   211: stands for itself, so that the regular expression is
                    212: .Dq abcxdef .
1.21      jmc       213: .Pp
1.1       deraadt   214: .It
                    215: The escape sequence \en matches a newline character embedded in the
                    216: pattern space.
                    217: You can't, however, use a literal newline character in an address or
                    218: in the substitute command.
                    219: .El
                    220: .Pp
                    221: One special feature of
1.8       aaron     222: .Nm
1.1       deraadt   223: regular expressions is that they can default to the last regular
                    224: expression used.
1.13      aaron     225: If a regular expression is empty, i.e., just the delimiter characters
1.1       deraadt   226: are specified, the last regular expression encountered is used instead.
                    227: The last regular expression is defined as the last regular expression
                    228: used as part of an address or substitute command, and at run-time, not
                    229: compile-time.
                    230: For example, the command
                    231: .Dq /abc/s//XXX/
                    232: will substitute
                    233: .Dq XXX
                    234: for the pattern
                    235: .Dq abc .
1.21      jmc       236: .Sh SED FUNCTIONS
1.1       deraadt   237: In the following list of commands, the maximum number of permissible
                    238: addresses for each command is indicated by [0addr], [1addr], or [2addr],
                    239: representing zero, one, or two addresses.
                    240: .Pp
                    241: The argument
1.37      jmc       242: .Ar text
1.1       deraadt   243: consists of one or more lines.
                    244: To embed a newline in the text, precede it with a backslash.
                    245: Other backslashes in text are deleted and the following character
                    246: taken literally.
                    247: .Pp
                    248: The
1.40      jmc       249: .Ic r
1.1       deraadt   250: and
1.40      jmc       251: .Ic w
                    252: functions,
                    253: as well as the
                    254: .Cm w
                    255: flag to the
                    256: .Ic s
                    257: function,
                    258: take an optional
                    259: .Ar file
                    260: parameter,
                    261: which should be separated from the function or flag by whitespace.
                    262: Files are created
                    263: (or their contents truncated)
                    264: before any input processing begins.
1.1       deraadt   265: .Pp
                    266: The
1.40      jmc       267: .Ic b ,
                    268: .Ic r ,
                    269: .Ic s ,
                    270: .Ic t ,
                    271: .Ic w ,
                    272: .Ic y ,
1.1       deraadt   273: and
1.40      jmc       274: .Ic \&:
1.1       deraadt   275: functions all accept additional arguments.
1.40      jmc       276: The synopses below indicate which arguments have to be separated from
1.9       aaron     277: the function letters by whitespace characters.
1.1       deraadt   278: .Pp
1.41      jmc       279: Functions can be combined to form a
                    280: .Em function list ,
                    281: a list of
1.8       aaron     282: .Nm
1.44      schwarze  283: functions each followed by a newline, as follows:
1.1       deraadt   284: .Bd -literal -offset indent
                    285: { function
                    286:   function
                    287:   ...
                    288:   function
                    289: }
                    290: .Ed
                    291: .Pp
1.44      schwarze  292: The braces can be preceded and followed by whitespace.
                    293: The functions can be preceded by whitespace as well.
1.38      jmc       294: .Pp
1.40      jmc       295: Functions and function lists may be preceded by an exclamation mark,
1.38      jmc       296: in which case they are applied only to lines that are
                    297: .Em not
                    298: selected by the addresses.
1.37      jmc       299: .Bl -tag -width Ds
                    300: .It [2addr] Ar function-list
1.15      aaron     301: Execute
1.37      jmc       302: .Ar function-list
1.15      aaron     303: only when the pattern space is selected.
1.37      jmc       304: .It Xo [1 addr] Ic a Ns \e
                    305: .br
                    306: .Ar text
                    307: .Xc
1.21      jmc       308: .Pp
1.1       deraadt   309: Write
1.37      jmc       310: .Ar text
1.1       deraadt   311: to standard output immediately before each attempt to read a line of input,
                    312: whether by executing the
1.37      jmc       313: .Ic N
1.1       deraadt   314: function or by beginning a new cycle.
1.37      jmc       315: .It [2addr] Ns Ic b Bq Ar label
1.1       deraadt   316: Branch to the
1.37      jmc       317: .Ic \&:
                    318: function with the specified
                    319: .Ar label .
1.1       deraadt   320: If the label is not specified, branch to the end of the script.
1.37      jmc       321: .It Xo [2addr] Ic c Ns \e
                    322: .br
                    323: .Ar text
                    324: .Xc
1.21      jmc       325: .Pp
1.1       deraadt   326: Delete the pattern space.
                    327: With 0 or 1 address or at the end of a 2-address range,
1.37      jmc       328: .Ar text
1.1       deraadt   329: is written to the standard output.
1.37      jmc       330: .It [2addr] Ns Ic d
1.1       deraadt   331: Delete the pattern space and start the next cycle.
1.37      jmc       332: .It [2addr] Ns Ic D
1.1       deraadt   333: Delete the initial segment of the pattern space through the first
                    334: newline character and start the next cycle.
1.37      jmc       335: .It [2addr] Ns Ic g
1.1       deraadt   336: Replace the contents of the pattern space with the contents of the
                    337: hold space.
1.37      jmc       338: .It [2addr] Ns Ic G
1.1       deraadt   339: Append a newline character followed by the contents of the hold space
                    340: to the pattern space.
1.37      jmc       341: .It [2addr] Ns Ic h
1.1       deraadt   342: Replace the contents of the hold space with the contents of the
                    343: pattern space.
1.37      jmc       344: .It [2addr] Ns Ic H
1.1       deraadt   345: Append a newline character followed by the contents of the pattern space
                    346: to the hold space.
1.37      jmc       347: .It Xo [1addr] Ic i Ns \e
                    348: .br
                    349: .Ar text
                    350: .Xc
1.21      jmc       351: .Pp
1.1       deraadt   352: Write
1.37      jmc       353: .Ar text
1.1       deraadt   354: to the standard output.
1.37      jmc       355: .It [2addr] Ns Ic l
1.1       deraadt   356: (The letter ell.)
                    357: Write the pattern space to the standard output in a visually unambiguous
                    358: form.
                    359: This form is as follows:
1.21      jmc       360: .Pp
1.1       deraadt   361: .Bl -tag -width "carriage-returnXX" -offset indent -compact
                    362: .It backslash
1.3       deraadt   363: \e\e
1.1       deraadt   364: .It alert
                    365: \ea
1.31      millert   366: .It backspace
                    367: \eb
1.1       deraadt   368: .It form-feed
                    369: \ef
                    370: .It carriage-return
                    371: \er
                    372: .It tab
                    373: \et
                    374: .It vertical tab
                    375: \ev
                    376: .El
                    377: .Pp
1.15      aaron     378: Non-printable characters are written as three-digit octal numbers (with a
1.1       deraadt   379: preceding backslash) for each byte in the character (most significant byte
                    380: first).
                    381: Long lines are folded, with the point of folding indicated by displaying
                    382: a backslash followed by a newline.
                    383: The end of each line is marked with a
1.8       aaron     384: .Ql $ .
1.37      jmc       385: .It [2addr] Ns Ic n
1.1       deraadt   386: Write the pattern space to the standard output if the default output has
                    387: not been suppressed, and replace the pattern space with the next line of
                    388: input.
1.37      jmc       389: .It [2addr] Ns Ic N
1.1       deraadt   390: Append the next line of input to the pattern space, using an embedded
                    391: newline character to separate the appended material from the original
                    392: contents.
                    393: Note that the current line number changes.
1.37      jmc       394: .It [2addr] Ns Ic p
1.1       deraadt   395: Write the pattern space to standard output.
1.37      jmc       396: .It [2addr] Ns Ic P
1.39      jmc       397: Write the pattern space, up to the first newline character,
                    398: to the standard output.
1.37      jmc       399: .It [1addr] Ns Ic q
1.1       deraadt   400: Branch to the end of the script and quit without starting a new cycle.
1.37      jmc       401: .It [1addr] Ns Ic r Ar file
1.1       deraadt   402: Copy the contents of
1.37      jmc       403: .Ar file
1.1       deraadt   404: to the standard output immediately before the next attempt to read a
                    405: line of input.
                    406: If
1.37      jmc       407: .Ar file
1.1       deraadt   408: cannot be read for any reason, it is silently ignored and no error
                    409: condition is set.
1.37      jmc       410: .It [2addr] Ns Ic s Ns / Ns Ar RE Ns / Ns Ar replacement Ns / Ns Ar flags
                    411: Substitute the
                    412: .Ar replacement
                    413: string for the first instance of the regular expression
                    414: .Ar RE
                    415: in the pattern space.
1.1       deraadt   416: Any character other than backslash or newline can be used instead of
1.37      jmc       417: a slash to delimit the regular expression and the replacement.
                    418: Within the regular expression and the replacement,
                    419: the regular expression delimiter itself can be used as
1.1       deraadt   420: a literal character if it is preceded by a backslash.
                    421: .Pp
                    422: An ampersand
1.8       aaron     423: .Pq Ql &
1.37      jmc       424: appearing in the replacement is replaced by the string matching the
                    425: regular expression.
1.1       deraadt   426: The special meaning of
1.8       aaron     427: .Ql &
1.1       deraadt   428: in this context can be suppressed by preceding it by a backslash.
                    429: The string
1.8       aaron     430: .Ql \e# ,
1.1       deraadt   431: where
1.8       aaron     432: .Ql #
1.1       deraadt   433: is a digit, is replaced by the text matched
                    434: by the corresponding backreference expression (see
1.14      aaron     435: .Xr re_format 7 ) .
1.1       deraadt   436: .Pp
                    437: A line can be split by substituting a newline character into it.
                    438: To specify a newline character in the replacement string, precede it with
                    439: a backslash.
                    440: .Pp
                    441: The value of
1.37      jmc       442: .Ar flags
1.1       deraadt   443: in the substitute function is zero or more of the following:
                    444: .Bl -tag -width "XXXXXX" -offset indent
1.49    ! schwarze  445: .It Ar N
        !           446: Make the substitution only for the
        !           447: .Ar N Ap th
        !           448: occurrence of the regular expression in the pattern space, where
        !           449: .Ar N
        !           450: is a positive integer starting with
        !           451: .Cm 1 No ... Cm 9 .
1.37      jmc       452: .It Cm g
1.1       deraadt   453: Make the substitution for all non-overlapping matches of the
                    454: regular expression, not just the first one.
1.37      jmc       455: .It Cm p
1.1       deraadt   456: Write the pattern space to standard output if a replacement was made.
                    457: If the replacement string is identical to that which it replaces, it
                    458: is still considered to have been a replacement.
1.37      jmc       459: .It Cm w Ar file
1.1       deraadt   460: Append the pattern space to
1.37      jmc       461: .Ar file
1.1       deraadt   462: if a replacement was made.
                    463: If the replacement string is identical to that which it replaces, it
                    464: is still considered to have been a replacement.
                    465: .El
1.37      jmc       466: .It [2addr] Ns Ic t Bq Ar label
1.1       deraadt   467: Branch to the
1.37      jmc       468: .Ic \&:
                    469: function bearing the
                    470: .Ar label
                    471: if any substitutions have been made since the
1.1       deraadt   472: most recent reading of an input line or execution of a
1.37      jmc       473: .Ic t
1.1       deraadt   474: function.
                    475: If no label is specified, branch to the end of the script.
1.37      jmc       476: .It [2addr] Ns Ic w Ar file
1.1       deraadt   477: Append the pattern space to the
1.37      jmc       478: .Ar file .
                    479: .It [2addr] Ns Ic x
1.1       deraadt   480: Swap the contents of the pattern and hold spaces.
1.37      jmc       481: .It [2addr] Ns Ic y Ns / Ns Ar string1 Ns / Ns Ar string2 Ns /
1.1       deraadt   482: Replace all occurrences of characters in
1.37      jmc       483: .Ar string1
1.1       deraadt   484: in the pattern space with the corresponding characters from
1.37      jmc       485: .Ar string2 .
1.1       deraadt   486: Any character other than a backslash or newline can be used instead of
                    487: a slash to delimit the strings.
                    488: Within
1.37      jmc       489: .Ar string1
1.1       deraadt   490: and
1.37      jmc       491: .Ar string2 ,
1.1       deraadt   492: a backslash followed by any character other than a newline is that literal
1.8       aaron     493: character, and a backslash followed by an
                    494: .Sq n
                    495: is replaced by a newline character.
1.37      jmc       496: .It [0addr] Ns Ic \&: Ns Ar label
                    497: This function does nothing; it bears a
                    498: .Ar label
                    499: to which the
                    500: .Ic b
1.1       deraadt   501: and
1.37      jmc       502: .Ic t
1.1       deraadt   503: commands may branch.
1.37      jmc       504: .It [1addr] Ns Ic =
1.15      aaron     505: Write the line number to the standard output followed by a newline character.
1.1       deraadt   506: .It [0addr]
                    507: Empty lines are ignored.
1.37      jmc       508: .It [0addr] Ns Ic #
1.1       deraadt   509: The
1.8       aaron     510: .Ql #
1.1       deraadt   511: and the remainder of the line are ignored (treated as a comment), with
                    512: the single exception that if the first two characters in the file are
1.8       aaron     513: .Ql #n ,
1.1       deraadt   514: the default output is suppressed.
                    515: This is the same as specifying the
                    516: .Fl n
                    517: option on the command line.
1.48      bentley   518: .El
                    519: .Sh ENVIRONMENT
                    520: .Bl -tag -width COLUMNS
                    521: .It Ev COLUMNS
                    522: If set to a positive integer,
                    523: output from the
                    524: .Ic l
                    525: function is formatted to the given width in columns.
                    526: Otherwise,
                    527: .Nm
                    528: defaults to the terminal with, or 80 columns if the output is not a terminal.
1.1       deraadt   529: .El
1.36      jmc       530: .Sh EXIT STATUS
1.24      jmc       531: .Ex -std sed
1.43      jmc       532: .Sh EXAMPLES
                    533: The following simulates the
                    534: .Xr cat 1
                    535: .Fl s
                    536: command,
                    537: squeezing excess empty lines from standard input:
                    538: .Bd -literal -offset indent
                    539: $ sed -n '
                    540: # Write non-empty lines.
                    541: /./ {
                    542:     p
                    543:     d
                    544:     }
                    545: # Write a single empty line, then look for more empty lines.
                    546: /^$/    p
                    547: # Get the next line, discard the held <newline> (empty line),
                    548: # and look for more empty lines.
                    549: :Empty
                    550: /^$/    {
                    551:     N
                    552:     s/.//
                    553:     b Empty
                    554:     }
                    555: # Write the non-empty line before going back to search
                    556: # for the first in a set of empty lines.
                    557:     p
                    558: \&'
                    559: .Ed
1.1       deraadt   560: .Sh SEE ALSO
                    561: .Xr awk 1 ,
                    562: .Xr ed 1 ,
                    563: .Xr grep 1 ,
                    564: .Xr re_format 7
                    565: .Sh STANDARDS
                    566: The
1.8       aaron     567: .Nm
1.25      jmc       568: utility is compliant with the
1.32      jmc       569: .St -p1003.1-2008
1.1       deraadt   570: specification.
1.25      jmc       571: .Pp
1.26      ray       572: The flags
1.45      jasper    573: .Op Fl aEiru
1.27      jmc       574: are extensions to that specification.
1.25      jmc       575: .Pp
                    576: The use of newlines to separate multiple commands on the command line
                    577: is non-portable;
                    578: the use of newlines to separate multiple commands within a command file
                    579: .Pq Fl f Ar command_file
                    580: is portable.
1.11      aaron     581: .Sh HISTORY
                    582: A
                    583: .Nm
                    584: command appeared in
                    585: .At v7 .
1.25      jmc       586: .Sh CAVEATS
                    587: The use of semicolons to separate multiple commands
                    588: is not permitted for the following commands:
1.37      jmc       589: .Ic a , b , c ,
                    590: .Ic i , r , t ,
                    591: .Ic w , \&: ,
1.25      jmc       592: and
1.37      jmc       593: .Ic # .