SED(1) | General Commands Manual | SED(1) |
sed
— stream
editor
sed |
[-EHalnru ] command
[-I extension]
[-i extension]
[file ...] |
sed |
[-EHalnru ] [-e
command] [-f
command_file] [-I
extension] [-i
extension] [file ...] |
The sed
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
. Multiple commands may 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:
-E
-a
-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-f
command_file-
”.-H
-E
option. See
re_format(7) for details.-I
extensionNote 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-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
-n
-n
option suppresses this behavior.-r
-E
for compatibility with GNU sed.-u
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.
An address is not required, but if specified must have one of the following formats:
-i
option is in
effect);-i
option was specified);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 an inclusive range. This
range starts with the first pattern space that matches the first address.
The end of the range is the next following pattern space that matches the
second address. If the second address is a number less than or equal to the
line number first selected, only that line is selected. The number in the
second address may be prefixed with a (“+”) to specify the
number of lines to match after the first pattern. In the case when the
second address is a context address, sed
does not
re-match the second address against the pattern space that matched the first
address. Starting at the first line following the selected range,
sed
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 regular expressions used in sed
, by
default, are basic regular expressions (BREs, see
re_format(7) for more information),
but extended (modern) regular expressions can be used instead if the
-E
flag is given. In addition,
sed
has the following two additions to regular
expressions:
\xabcx
is equivalent to
/abc/
. Also, putting a backslash character before
the delimiting character within the regular expression 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
regular
expressions is that they can default to the last regular expression used. If
a regular expression is empty, i.e., 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
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
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, and may also be preceded by white space.
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 by a backslash. The string “\#”, where “#” is a digit, is replaced by the text matched by the corresponding backreference expression (see re_format(7)).
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:
-n
option on the
command line.The COLUMNS
, LANG
,
LC_ALL
, LC_CTYPE
and
LC_COLLATE
environment variables affect the
execution of sed
as described in
environ(7).
The sed
utility exits 0 on success,
and >0 if an error occurs.
Replace ‘bar
’ with
‘baz
’ when piped from another
command:
echo "An alternate word, like bar, is sometimes used in examples." | sed 's/bar/baz/'
Using backlashes can sometimes be hard to read and follow:
echo "/home/example" | sed 's/\/home\/example/\/usr\/local\/example/'
Using a different separator can be handy when working with paths:
echo "/home/example" | sed 's#/home/example#/usr/local/example#'
Replace all occurances of
‘foo
’ with
‘bar
’ in the file
test.txt, without creating a backup of the file:
sed -i '' -e 's/foo/bar/g' test.txt
The sed
utility is expected to be a
superset of the IEEE Std 1003.2
(“POSIX.2”) specification.
The -E
, -I
,
-a
and -i
options, the
special meaning of -f
-
, the
prefixing “+” in the second member of an address range, as
well as the “I” flag to the address regular expression and
substitution command are non-standard FreeBSD
extensions and may not be available on other operating systems.
A sed
command, written by
L. E. McMahon, appeared in
Version 7 AT&T UNIX.
Diomidis D. Spinellis <dds@FreeBSD.org>
Multibyte characters containing a byte with value 0x5C (ASCII
‘\
’) may be incorrectly treated as
line continuation characters in arguments to the “a”,
“c” and “i” commands. Multibyte characters
cannot be used as delimiters with the “s” and
“y” commands.
June 10, 2020 | macOS 15.0 |