sed - stream editor
sed [-an] command [file ...]
sed [-an] [-e command] [-f command_file] [file ...]
The sed(1) utility reads the specified files, or the standard input if no files are specified, modifying the input as specified by a list of commands. The input is then written to the standard output.
A single command may be specified as the first argument to sed(1). Multiple commands can be specified by using the -e or -f options. All commands are applied to the input in the order they are specified regardless of their origin.
The following options are available:
The form of a sed(1) command is as follows:
[address[,address]]function[arguments]
White space can be inserted before the first address and the
function portions of the command.
Normally, sed(1) 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.
The sed(1) commands do not require an address, but if one is specified, it must be one of the following:
A command line with no addresses selects every pattern space.
A command line with one address selects all of the pattern spaces that match the address.
A command line with two addresses selects the inclusive range from the first pattern space that matches the first address through the next pattern space that matches the second. (If the second address is a number less than or equal to the line number first selected, only that line is selected.) Starting at the first line following the selected range, sed(1) starts looking again for the first address.
Editing commands can be applied to non-selected pattern spaces by use of the exclamation character (!) function.
The sed(1) regular expressions are basic regular expressions (BRE). The sed(1) utility also has the following two additions to BREs:
x
the delimiting
character for the BRE //*, you would type \x//*x. The second
x
is automatically treated as the closing delimiter.
(This is often done to make it easier to type regular expressions
containing slashes.) Putting a backslash character before the
delimiting character causes the character to be treated literally.
For example, in the context address \xabc\xdefx, the RE delimiter
is an x and the second x
stands for itself, so that
the regular expression is abcxdef.One special feature of sed(1) regular expressions is that they can default to the last regular expression used. If a regular expression is empty (that is, just the delimiter characters are specified), the last regular expression encountered is used instead. The last regular expression is defined as the last regular expression used as part of an address or substitute command, and at run-time, not compile-time. For example, the command /abc/s//XXX/ will substitute XXX for the pattern abc.
In the following list of commands, the maximum number of permissible addresses for each command is indicated by [0addr], [1addr], or [2addr], representing zero, one, or two addresses.
The argument text consists of one or more lines. To embed a newline in the text, precede it with a backslash. Other backslashes in text are deleted and the following character taken literally.
The r and w functions take an optional file parameter, which should be separated from the function letter by white space. Each file given as an argument to sed(1) is created (or its contents truncated) before any input processing begins.
The b, r, s, t, w, y, !, and : functions all accept additional arguments. The following synopses indicate which arguments have to be separated from the function letters by white space characters.
Two of the functions take a function-list. This is a list of sed(1) functions separated by newlines, as follows:
{ function
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.
backslash | \ |
alert | \a |
form-feed | \f |
newline | \n |
carriage-return | \r |
tab | \t |
vertical tab | \v |
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 $.
An ampersand (&) appearing in the replacement is replaced by the string matching the RE. The special meaning of & in this context can be suppressed by preceding it with a backslash. The string \d, where d is a digit, is replaced by the text matched by the corresponding back-reference expression.
A line can be split by substituting a newline character into it. To specify a newline character in the replacement string, precede it with a backslash.
The value of flags in the substitute function is zero or more of the following:
The sed(1) utility exits 0 on success and >0 if an error occurs.
To change all backslashes in to forward slashes, use:
s;\\;/;g
To delete the first blank line following a line all in uppercase, use:
/^[^[:lower:]][^[:lower:]]*/{
n
/^$/d
}
(Note the use of the POSIX regular character class [:lower:].)
To change all of the characters in the line to uppercase, use:
/.*/y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/
awk(1)
ed(1)
grep(1)