The Regents of the University of California. All rights reserved.
Copyright 2011 Nexenta Systems, Inc. All rights reserved.
This code is derived from software contributed to Berkeley by
the Institute of Electrical and Electronics Engineers, Inc.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
4. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
sed [-Ealnr] [-e command] [-f command_file] [-I[extension] | -i[extension]] [file ...]
-E Interpret regular expressions as extended (modern) regular expressions rather than basic regular expressions (BRE's). The regex(5) manual page fully describes both formats.
-a The files listed as parameters for the ``w'' functions are created (or truncated) before any processing begins, by default. The -a option causes sed to delay opening each file until a command containing the related ``w'' function is applied to a line of input.
-e command Append the editing commands specified by the command argument to the list of commands.
-f command_file Append the editing commands found in the file command_file to the list of commands. The editing commands should each be listed on a separate line.
-I[extension] Edit files in-place, saving backups if extension was specified. It is not recommended to omit saving backups when in-place editing files, as you risk corruption or partial content in situations where disk space is exhausted, etc. Note that in-place editing with -I still takes place in a single continuous line address space covering all files, although each file preserves its individuality instead of forming one output stream. The line counter is never reset between files, address ranges can span file boundaries, and the ``$'' address matches only the last line of the last file. (See "Sed Addresses" . ) That can lead to unexpected results in many cases of in-place editing, where using -i is desired.
-i[extension] Edit files in-place similarly to -I, but treat each file independently from other files. In particular, line numbers in each file start at 1, the ``$'' address matches the last line of the current file, and address ranges are limited to the current file. (See "Sed Addresses" . ) The net result is as though each file were edited by a separate sed instance.
-l Make output line buffered.
-n By default, each line of input is echoed to the standard output after all of the commands have been applied to it. The -n option suppresses this behavior.
-r Same as -E for compatibility with GNU sed. The form of a sed command is as follows: [address[,address]]function[arguments] Whitespace may be inserted before the first address and the function portions of the command. Normally, sed cyclically copies a line of input, not including its terminating newline character, into a "pattern space" , (unless there is something left after a ``D'' function), applies all of the commands with addresses that select that pattern space, copies the pattern space to the standard output, appending a newline, and deletes the pattern space. Some of the functions use a "hold space" to save all or part of the pattern space for subsequent retrieval.
function
...
function
}
The ``{'' can be preceded by white space and can be followed by white space. The function can be preceded by white space. The terminating ``}'' must be preceded by a newline or optional white space.
[2addr] function-list Execute function-list only when the pattern space is selected.
[1addr]a\e
text Write text to standard output immediately before each attempt to read a line of input, whether by executing the ``N'' function or by beginning a new cycle.
[2addr]b[label] Branch to the ``:'' function with the specified label. If the label is not specified, branch to the end of the script.
[2addr]c\e
text Delete the pattern space. With 0 or 1 address or at the end of a 2-address range, text is written to the standard output.
[2addr]d Delete the pattern space and start the next cycle.
[2addr]D Delete the initial segment of the pattern space through the first newline character and start the next cycle.
[2addr]g Replace the contents of the pattern space with the contents of the hold space.
[2addr]G Append a newline character followed by the contents of the hold space to the pattern space.
[2addr]h Replace the contents of the hold space with the contents of the pattern space.
[2addr]H Append a newline character followed by the contents of the pattern space to the hold space.
[1addr]i\e
text Write text to the standard output.
[2addr]l (The letter ell.) Write the pattern space to the standard output in a visually unambiguous form. This form is as follows:
backslash \e\e
alert \ea
form-feed \ef
carriage-return \er
tab \et
vertical tab \ev Nonprintable characters are written as three-digit octal numbers (with a preceding backslash) for each byte in the character (most significant byte first). Long lines are folded, with the point of folding indicated by displaying a backslash followed by a newline. The end of each line is marked with a ``$''.
[2addr]n Write the pattern space to the standard output if the default output has not been suppressed, and replace the pattern space with the next line of input.
[2addr]N Append the next line of input to the pattern space, using an embedded newline character to separate the appended material from the original contents. Note that the current line number changes.
[2addr]p Write the pattern space to nd member of an address range, as well as the ``I'' flag to the address regular expression and substitution command are non-standard extensions and may not be available on other operating systems.