Skip Navigation Links | |
Exit Print View | |
man pages section 1: User Commands Oracle Solaris 11.1 Information Library |
- stream editor
sed [-n] [-e script] [-f sfilename] [filename]...
The sed utility copies the filenames (standard input default) to the standard output, edited according to a script of commands.
The following options are supported:
Suppresses the default output.
script is an edit command for sed. If there is just one -e option and no -f options, the -e flag may be omitted.
Takes the script from sfilename.
sed scripts consist of editing commands, one per line, of the following form:
[ address [, address ] ] function [ arguments ]
In normal operation, sed cyclically copies a line of input into a pattern space (unless there is something left after a D command), sequentially applies all commands with addresses matching that pattern space until reaching the end of the script, copies the pattern space to the standard output (except under -n), and finally, deletes the pattern space.
Some commands use a hold space to save all or part of the pattern space for subsequent retrieval.
An address is either:
a decimal number linecount, which is cumulative across input files;
a $, which addresses the last input line;
or a context address, which is a /regular expression/ as described on the regexp(5) manual page, with the following exceptions:
In a context address, the construction \ ?regular expression?, where ? is any character, is identical to /regular expression/. Note: in the context address \xabc\xdefx, the second x stands for itself, so that the regular expression is abcxdef.
Matches a NEWLINE embedded in the pattern space.
Matches any character except the NEWLINE ending the pattern space.
A command line with no address selects every pattern space.
Selects each pattern space that matches.
Selects the inclusive range from the first pattern space matching address1 to the first pattern space matching address2. Selects only one line if address1 is greater than or equal to address2.
If the first nonwhite character in a line is a `#' (pound sign), sed treats that line as a comment, and ignores it. If, however, the first such line is of the form:
#n
sed runs as if the -n flag were specified.
The maximum number of permissible addresses for each function is indicated in parentheses in the list below.
An argument denoted text consists of one or more lines, all but the last of which end with \ to hide the NEWLINE. Backslashes in text are treated like backslashes in the replacement string of an s command, and may be used to protect initial SPACE and TAB characters against the stripping that is done on every script line.
An argument denoted rfilename or wfilename must terminate the command line and must be preceded by exactly one SPACE. Each wfilename is created before processing begins. There can be at most 10 distinct wfilename arguments.
Append: place text on the output before reading the next input line.
Branch to the `:' command bearing the label. Branch to the end of the script if label is empty.
Change: delete the pattern space. With 0 or 1 address or at the end of a 2 address range, place text on the output. Start the next cycle.
Delete the pattern space. Start the next cycle.
Delete the initial segment of the pattern space through the first NEWLINE. Start the next cycle.
Replace the contents of the pattern space by the contents of the hold space.
Append the contents of the hold space to the pattern space.
Replace the contents of the hold space by the contents of the pattern space.
Append the contents of the pattern space to the hold space.
Insert: place text on the standard output.
List the pattern space on the standard output in an unambiguous form. Non-printing characters are spelled in two digit ASCII and long lines are folded.
Copy the pattern space to the standard output. Replace the pattern space with the next line of input.
Append the next line of input to the pattern space with an embedded newline. (The current line number changes.)
Print: copy the pattern space to the standard output.
Copy the initial segment of the pattern space through the first NEWLINE to the standard output.
Quit: branch to the end of the script. Do not start a new cycle.
Read the contents of rfilename. Place them on the output before reading the next input line.
Substitute the replacement string for instances of the regular expression in the pattern space. Any character may be used instead of `/'. For a fuller description see regexp(5). flags is zero or more of:
n= 1 - 512. Substitute for just the nth occurrence of the regularexpression.
Global: substitute for all nonoverlapping instances of the regular expression rather than just the first one.
Print the pattern space if a replacement was made.
Write: append the pattern space to wfilename if a replacement was made.
Test: branch to the `:' command bearing the label if any substitutions have been made since the most recent reading of an input line or execution of a t. If label is empty, branch to the end of the script.
Write: append the pattern space to wfilename.
Exchange the contents of the pattern and hold spaces.
Transform: replace all occurrences of characters in string1 with the corresponding character in string2. The lengths of string1 and string2 must be equal.
Do not: apply the function (or group, if function is `{') only to lines not selected by the address(es).
This command does nothing. It bears a label for b and t commands to branch to. Note: The maximum length of label is seven characters.
Place the current line number on the standard output as a line.
Execute the following commands through a matching `}' only when the pattern space is selected. Commands are separated by `;'.
An empty command is ignored.
See largefile(5) for the description of the behavior of sed when encountering files greater than or equal to 2 Gbyte (231 bytes).
The command list contained more than 200 commands.
The command list was too big for sed to handle. Text in the a, c, and i commands, text read in by r commands, addresses, regular expressions and replacement strings in s commands, and translation tables in y commands all require sed to store data internally.
A command line was longer than 4000 characters.
More than 256 decimal number linecounts were specified as addresses in the command list.
More than 10 different files were specified in w commands or w options for s commands in the command list.
More than 50 labels were specified in the command list.
A command was not one of the ones recognized by sed.
A command had extra text after the end.
An address was neither a decimal number linecount, a $, nor a context address.
There was no space between an r or w command, or the w option for a s command, and the filename specified for that command.
There were more { than } in the list of commands to be executed.
There were more } than { in the list of commands to be executed.
A command that takes no addresses had an address specified.
A command that takes one address had two addresses specified.
The number in a \n item in a regular expression or a replacement string in ans command was greater than 9.
One of the endpoints in a range item in a regular expression (that is, an item of the form {n} or {n,m}) was not a number.
One of the endpoints in a range item in a regular expression was greater than 255.
More than two endpoints were given in a range expression.
A \ appeared in a range expression and was not followed by a }.
The first endpoint in a range expression was greater than the second.
The delimiter at the end of a regular expression was absent.
There were more \( than \), or more \) than \(, in a regular expression.
There were more [ than ], or more ] than [, in a regular expression.
The first regular expression in an address or in a s command was null (empty).
The ending delimiter in a s command was absent.
The ending delimiter in a y command was absent.
The two strings in a y command were not the same size.
The suffix in a s command, specifying which occurrence of the regular expression should be replaced, was greater than 512.
A label in a command was longer than 8 characters.
The same label was specified by more than one : command.
The filename specified in a r or w command, or in the w option for a s command, was longer than 1024 characters.
An output line was longer than 4000 characters long.
More than 20 a or r commands were to be executed for line n.
More than 4000 characters were to be stored in the hold space.
BSD sed
See attributes(5) for descriptions of the following attributes:
|
awk(1), grep(1), lex(1), attributes(5), largefile(5), regexp(5)
There is a combined limit of 200 -e and -f arguments. In addition, there are various internal size limits which, in rare cases, may overflow. To overcome these limitations, either combine or break out scripts, or use a pipeline of sed commands.