Sed, A Stream Editor - by Ken Pizzini, Paolo Bonzini PDF
Sed, A Stream Editor - by Ken Pizzini, Paolo Bonzini PDF
Short Contents
...................................................................... 1
1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
2 Invocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
3 sed Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
4 Some Sample Scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
5 GNU seds Limitations and Non-limitations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
6 Other Resources for Learning About sed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
7 Reporting Bugs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
A Extended regular expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
Concept Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
Command and Option Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
ii
Table of Contents
..................................................................... 1
1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
2 Invocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
3 sed Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3.1 How sed Works . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3.2 Selecting lines with sed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
3.3 Overview of Regular Expression Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
3.4 Often-Used Commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
3.5 The s Command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
3.6 Less Frequently-Used Commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.7 Commands for sed gurus . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.8 Commands Specific to GNU sed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.9 GNU Extensions for Escapes in Regular Expressions. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
7 Reporting Bugs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
Concept Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
iii
1 Introduction
sed is a stream editor. A stream editor is used to perform basic text transformations on an
input stream (a file or input from a pipeline). While in some ways similar to an editor which
permits scripted edits (such as ed), sed works by making only one pass over the input(s), and is
consequently more efficient. But it is seds ability to filter text in a pipeline which particularly
distinguishes it from other types of editors.
2 Invocation
Normally sed is invoked like this:
sed SCRIPT INPUTFILE...
The full format for invoking sed is:
sed OPTIONS... [SCRIPT] [INPUTFILE...]
If you do not specify INPUTFILE, or if INPUTFILE is -, sed filters the contents of the
standard input. The script is actually the first non-option parameter, which sed specially
considers a script and not an input file if (and only if) none of the other options specifies a
script to be executed, that is if neither of the -e and -f options is specified.
sed may be invoked with the following command-line options:
--version
Print out the version of sed that is being run and a copyright notice, then exit.
--help Print a usage message briefly summarizing these command-line options and the
bug-reporting address, then exit.
-n
--quiet
--silent By default, sed prints out the pattern space at the end of each cycle through the
script (see Section 3.1 [How sed works], page 3). These options disable this au-
tomatic printing, and sed only produces output when explicitly told to via the p
command.
-e script
--expression=script
Add the commands in script to the set of commands to be run while processing the
input.
-f script-file
--file=script-file
Add the commands contained in the file script-file to the set of commands to be run
while processing the input.
-i[SUFFIX ]
--in-place[=SUFFIX ]
This option specifies that files are to be edited in-place. GNU sed does this by
creating a temporary file and sending output to this file rather than to the standard
output.1 .
1
This applies to commands such as =, a, c, i, l, p. You can still write to the standard output by using the w
or W commands together with the /dev/stdout special file
Chapter 2: Invocation 2
several files, line numbers are relative to the start of each file, $ refers to the last
line of each file, and files invoked from the R commands are rewound at the start of
each file.
-u
--unbuffered
Buffer both input and output as minimally as practical. (This is particularly useful
if the input is coming from the likes of tail -f, and you wish to see the transformed
output as soon as possible.)
If no -e, -f, --expression, or --file options are given on the command-line, then the
first non-option argument on the command line is taken to be the script to be executed.
If any command-line parameters remain after processing the above, these parameters are
interpreted as the names of input files to be processed. A file name of - refers to the standard
input stream. The standard input will be processed if no file names are specified.
3 sed Programs
A sed program consists of one or more sed commands, passed in by one or more of the -e,
-f, --expression, and --file options, or the first non-option argument if zero of these
options are used. This document will refer to the sed script; this is understood to mean the
in-order catenation of all of the scripts and script-files passed in.
Each sed command consists of an optional address or address range, followed by a one-
character command name and any additional command-specific code.
3
Actually, if sed prints a line without the terminating newline, it will nevertheless print the missing newline as
soon as more text is sent to the same output stream, which gives the least expected surprise even though
it does not make commands like sed -n p exactly identical to cat.
Chapter 3: sed Programs 4
first ~step
This GNU extension matches every stepth line starting with line first. In particular,
lines will be selected when there exists a non-negative n such that the current line-
number equals first + (n * step). Thus, to select the odd-numbered lines, one would
use 1~2; to pick every third line starting with the second, 2~3 would be used; to
pick every fifth line starting with the tenth, use 10~5; and 50~0 is just an obscure
way of saying 50.
$ This address matches the last line of the last file of input, or the last line of each
file when the -i or -s options are specified.
/regexp / This will select any line which matches the regular expression regexp. If regexp
itself includes any / characters, each must be escaped by a backslash (\).
The empty regular expression // repeats the last regular expression match (the
same holds if the empty regular expression is passed to the s command). Note
that modifiers to regular expressions are evaluated when the regular expression
is compiled, thus it is invalid to specify them together with the empty regular
expression.
\%regexp %
(The % may be replaced by any other single character.)
This also matches the regular expression regexp, but allows one to use a different
delimiter than /. This is particularly useful if the regexp itself contains a lot of
slashes, since it avoids the tedious escaping of every /. If regexp itself includes any
delimiter characters, each must be escaped by a backslash (\).
/regexp /I
\%regexp %I
The I modifier to regular-expression matching is a GNU extension which causes the
regexp to be matched in a case-insensitive manner.
/regexp /M
\%regexp %M
The M modifier to regular-expression matching is a GNU sed extension which causes
^ and $ to match respectively (in addition to the normal behavior) the empty string
after a newline, and the empty string before a newline. There are special character
sequences (\ and \) which always match the beginning or the end of the buffer.
M stands for multi-line.
If no addresses are given, then all lines are matched; if one address is given, then only lines
matching that address are matched.
An address range can be specified by specifying two addresses separated by a comma (,). An
address range matches lines starting from where the first address matches, and continues until
the second address matches (inclusively).
If the second address is a regexp, then checking for the ending match will start with the line
following the line which matched the first address: a range will always span at least two lines
(except of course if the input stream ends).
If the second address is a number less than (or equal to) the line matching the first address,
then only the one line is matched.
GNU sed also supports some special two-address forms; all these are GNU extensions:
0,/regexp /
A line number of 0 can be used in an address specification like 0,/regexp / so that
sed will try to match regexp in the first input line too. In other words, 0,/regexp /
Chapter 3: sed Programs 5
is similar to 1,/regexp /, except that if addr2 matches the very first line of input
the 0,/regexp / form will consider it to end the range, whereas the 1,/regexp /
form will match the beginning of its range and hence make the range span up to
the second occurrence of the regular expression.
Note that this is the only place where the 0 address makes sense; there is no 0-th
line and commands which are given the 0 address in any other way will give an
error.
addr1 ,+N Matches addr1 and the N lines following addr1.
addr1 ,~N Matches addr1 and the lines following addr1 until the next line whose input line
number is a multiple of N .
Appending the ! character to the end of an address specification negates the sense of the
match. That is, if the ! character follows an address range, then only lines which do not
match the address range will be selected. This also works for singleton addresses, and, perhaps
perversely, for the null address.
Note that the regular expression matcher is greedy, i.e., matches are attempted from left
to right and, if two or more matches are possible starting at the same character, it selects the
longest.
Examples:
abcdef Matches abcdef.
a*b Matches zero or more as followed by a single b. For example, b or aaaaab.
a\?b Matches b or ab.
a\+b\+ Matches one or more as followed by one or more bs: ab is the shortest possible
match, but other examples are aaaab or abbbbb or aaaaaabbbbbbb.
.*
.\+ These two both match all the characters in a string; however, the first matches
every string (including the empty string), while the second matches only strings
containing at least one character.
^main.*(.*)
his matches a string starting with main, followed by an opening and closing paren-
thesis. The n, ( and ) need not be adjacent.
^# This matches a string beginning with #.
\\$ This matches a string ending with a single backslash. The regexp contains two
backslashes for escaping.
\$ Instead, this matches a string consisting of a single dollar sign, because it is escaped.
[a-zA-Z0-9]
In the C locale, this matches any ASCII letters or digits.
[^ tab]\+
(Here tab stands for a single tab character.) This matches a string of one or more
characters, none of which is a space or a tab. Usually this means a word.
^\(.*\)\n\1$
This matches a string consisting of two equal substrings separated by a newline.
.\{9\}A$
This matches nine characters followed by an A.
^.\{15\}A
This matches the start of a string that contains 16 characters, the last of which is
an A.
q [exit-code ]
This command only accepts a single address.
Exit sed without processing any more commands or input. Note that the current
pattern space is printed if auto-print is not disabled with the -n options. The
ability to return an exit code from the sed script is a GNU sed extension.
d Delete the pattern space; immediately start next cycle.
p Print out the pattern space (to the standard output). This command is usually only
used in conjunction with the -n command-line option.
n If auto-print is not disabled, print the pattern space, then, regardless, replace the
pattern space with the next line of input. If there is no more input then sed exits
without processing any more commands.
{ commands }
A group of commands may be enclosed between { and } characters. This is particu-
larly useful when you want a group of commands to be triggered by a single address
(or address-range) match.
p If the substitution was made, then print the new pattern space.
Note: when both the p and e options are specified, the relative ordering of the two
produces very different results. In general, ep (evaluate then print) is what you want,
but operating the other way round can be useful for debugging. For this reason,
the current version of GNU sed interprets specially the presence of p options both
before and after e, printing the pattern space before and after evaluation, while in
general flags for the s command show their effect just once. This behavior, although
documented, might change in future versions.
w file-name
If the substitution was made, then write out the result to the named file. As a
GNU sed extension, two special values of file-name are supported: /dev/stderr,
which writes the result to the standard error, and /dev/stdout, which writes to
the standard output.4
e This command allows one to pipe input from a shell command into pattern space.
If a substitution was made, the command that is found in pattern space is executed
and pattern space is replaced with its output. A trailing newline is suppressed;
results are undefined if the command to be executed contains a nul character. This
is a GNU sed extension.
I
i The I modifier to regular-expression matching is a GNU extension which makes sed
match regexp in a case-insensitive manner.
M
m The M modifier to regular-expression matching is a GNU sed extension which causes
^ and $ to match respectively (in addition to the normal behavior) the empty string
after a newline, and the empty string before a newline. There are special character
sequences (\ and \) which always match the beginning or the end of the buffer.
M stands for multi-line.
Escape sequences in text are processed, so you should use \\ in text to print a single
backslash.
As a GNU extension, if between the a and the newline there is other than a
whitespace-\ sequence, then the text of this line, starting at the first non-whitespace
character after the a, is taken as the first line of the text block. (This enables a
simplification in scripting a one-line add.) This extension also works with the i and
c commands.
i\
text As a GNU extension, this command accepts two addresses.
Immediately output the lines of text which follow this command (each but the last
ending with a \, which are removed from the output).
c\
text Delete the lines matching the address or address-range, and output the lines of text
which follow this command (each but the last ending with a \, which are removed
from the output) in place of the last line (or in place of each line, if no addresses
were specified). A new cycle is started after this command is done, since the pattern
space will have been deleted.
= As a GNU extension, this command accepts two addresses.
Print out the current input line number (with a trailing newline).
ln Print the pattern space in an unambiguous form: non-printable characters (and the
\ character) are printed in C-style escaped form; long lines are split, with a trailing
\ character to indicate the split; the end of each line is marked with a $.
n specifies the desired line-wrap length; a length of 0 (zero) means to never wrap
long lines. If omitted, the default as specified on the command line is used. The n
parameter is a GNU sed extension.
r filename
As a GNU extension, this command accepts two addresses.
Queue the contents of filename to be read and inserted into the output stream at the
end of the current cycle, or when the next input line is read. Note that if filename
cannot be read, it is treated as if it were an empty file, without any error indication.
As a GNU sed extension, the special value /dev/stdin is supported for the file
name, which reads the contents of the standard input.
w filename
Write the pattern space to filename. As a GNU sed extension, two special values
of file-name are supported: /dev/stderr, which writes the result to the standard
error, and /dev/stdout, which writes to the standard output.5
The file will be created (or truncated) before the first input line is read; all w
commands (including instances of w flag on successful s commands) which refer to
the same filename are output without closing and reopening the file.
D Delete text in the pattern space up to the first newline. If any text is left, restart cy-
cle with the resultant pattern space (without reading a new line of input), otherwise
start a normal new cycle.
N Add a newline to the pattern space, then append the next line of input to the
pattern space. If there is no more input then sed exits without processing any more
commands.
5
This is equivalent to p unless the -i option is being used.
Chapter 3: sed Programs 11
P Print out the portion of the pattern space up to the first newline.
h Replace the contents of the hold space with the contents of the pattern space.
H Append a newline to the contents of the hold space, and then append the contents
of the pattern space to that of the hold space.
g Replace the contents of the pattern space with the contents of the hold space.
G Append a newline to the contents of the pattern space, and then append the contents
of the hold space to that of the pattern space.
x Exchange the contents of the hold and pattern spaces.
:eat
$d Quit silently on the last line
N Read another line, silently
g Overwrite pattern space each time to save memory
b eat
R filename
Queue a line of filename to be read and inserted into the output stream at the end of
the current cycle, or when the next input line is read. Note that if filename cannot
be read, or if its end is reached, no line is appended, without any error indication.
As with the r command, the special value /dev/stdin is supported for the file
name, which reads a line from the standard input.
T label Branch to label only if there have been no successful substitutions since the last
input line was read or conditional branch was taken. The label may be omitted, in
which case the next cycle is started.
v version
This command does nothing, but makes sed fail if GNU sed extensions are not
supported, simply because other versions of sed do not implement it. In addition,
you can specify the version of sed that your script requires, such as 4.0.5. The
default is 4.0 because that is the first version that implemented this command.
This command enables all GNU extensions even if POSIXLY_CORRECT is set in the
environment.
W filename
Write to the given filename the portion of the pattern space up to the first newline.
Everything said under the w command about file handling holds here too.
z This command empties the content of pattern space. It is usually the same as
s/.*//, but is more efficient and works in the presence of invalid multibyte se-
quences in the input stream. posix mandates that such sequences are not matched
by ., so that there is no portable way to clear seds buffers in the middle of the
script in most multibyte locales (including UTF-8 locales).
To increment one number you just add 1 to last digit, replacing it by the following digit.
There is one exception: when the digit is a nine the previous digits must be also incremented
until you dont have a nine.
This solution by Bruno Haible is very clever and smart because it uses a single buffer; if you
dont have this limitation, the algorithm used in Section 4.7 [cat -n], page 18, is faster. It works
by replacing trailing nines with an underscore, then using multiple s commands to increment
the last digit, and then again substituting underscores with zeros.
#!/usr/bin/sed -f
/[^0-9]/ d
7
sed guru Greg Ubben wrote an implementation of the dc rpn calculator! It is distributed together with sed.
Chapter 4: Some Sample Scripts 15
s/^\(_*\)$/1\1/; tn
s/8\(_*\)$/9\1/; tn
s/7\(_*\)$/8\1/; tn
s/6\(_*\)$/7\1/; tn
s/5\(_*\)$/6\1/; tn
s/4\(_*\)$/5\1/; tn
s/3\(_*\)$/4\1/; tn
s/2\(_*\)$/3\1/; tn
s/1\(_*\)$/2\1/; tn
s/0\(_*\)$/1\1/; tn
:n
y/_/0/
help()
{
cat << eof
Usage: $0 [-n] [-r] [-h] files...
Examples:
$0 -n * (see if everything is ok, then...)
$0 *
$0 -R .
eof
}
Chapter 4: Some Sample Scripts 16
apply_cmd=sh
finder=echo "$@" | tr " " "\n"
files_only=
while :
do
case "$1" in
-n) apply_cmd=cat ;;
-R) finder=find "$@" -type f;;
-h) help ; exit 1 ;;
*) break ;;
esac
shift
done
if [ -z "$1" ]; then
echo Usage: $0 [-h] [-n] [-r] files...
exit 1
fi
LOWER=abcdefghijklmnopqrstuvwxyz
UPPER=ABCDEFGHIJKLMNOPQRSTUVWXYZ
case basename $0 in
*upper*) TO=$UPPER; FROM=$LOWER ;;
*) FROM=$UPPER; TO=$LOWER ;;
esac
# save path+filename
h
# remove path
s/.*\///
| $apply_cmd
set | sed -n
:x
#!/usr/bin/sed -f
/../! b
# reverse all lines of input, i.e. first line became last, ...
# from the second line, the buffer (which contains all previous lines)
# is *appended* to current line, so, the order will be reversed
1! G
banner -w $1 $2 $3 $4 |
sed -e :a -e /^.\{0,$1\}$/ { s/$/ /; ba; } |
~/sedscripts/reverseline.sed
Chapter 4: Some Sample Scripts 19
#! /bin/sh
sed -e "=" $@ | sed -e
s/^/ /
N
s/^ *\(......\)\n/\1 /
It uses sed to print the line number, then groups lines two by two using N. Of course, this
script does not teach as much as the one presented below.
The algorithm used for incrementing uses both buffers, so the line is printed as soon as
possible and then discarded. The number is split so that changing digits go in a buffer and
unchanged ones go in the other; the changed digits are modified in a single step (using a y
command). The line number for the next line is then composed and stored in the hold space,
to be used in the next iteration.
#!/usr/bin/sed -nf
/^$/ {
p
b
}
9
Some implementations have a limit of 199 commands per script
Chapter 4: Some Sample Scripts 21
: done
$! {
h
b
}
: loop
/a/! s/[b-h]*/&0/
s/aaaaaaaaa/9/
s/aaaaaaaa/8/
s/aaaaaaa/7/
s/aaaaaa/6/
s/aaaaa/5/
s/aaaa/4/
s/aaa/3/
s/aa/2/
s/a/1/
: next
y/bcdefgh/abcdefg/
/[a-h]/ b loop
p
#!/usr/bin/sed -nf
# Convert words to as
s/[ tab][ tab]*/ /g
s/^/ /
s/ [^ ][^ ]*/a /g
s/ //g
This script is similar to the tac script in that it keeps the final output in the hold space and
prints it at the end:
#!/usr/bin/sed -nf
1! {; H; g; }
1,10 !s/[^\n]*\n//
$p
h
Mainly, the scripts keeps a window of 10 lines and slides it by adding a line and deleting
the oldest (the substitution command on the second line works like a D command but does not
restart the loop).
The sliding window technique is a very powerful way to write efficient and complex sed
scripts, because commands like P would require a lot of work if implemented manually.
To introduce the technique, which is fully demonstrated in the rest of this chapter and is
based on the N, P and D commands, here is an implementation of tail using a simple sliding
window.
This looks complicated but in fact the working is the same as the last script: after we have
kicked in the appropriate number of lines, however, we stop using the hold space to keep inter-line
state, and instead use N and D to slide pattern space by one line:
#!/usr/bin/sed -f
1h
2,10 {; H; g; }
$q
1,9d
N
D
Note how the first, second and fourth line are inactive after the first ten lines of input. After
that, all the script does is: exiting on the last line of input, appending the next input line to
pattern space, and removing the first line.
#!/usr/bin/sed -f
h
Chapter 4: Some Sample Scripts 24
:b
# On the last line, print and exit
$b
N
/^\(.*\)\n\1$/ {
# The two lines are identical. Undo the effect of
# the n command.
g
bb
}
# If the N command had added the last line, print and exit
$b
As you can see, we mantain a 2-line window using P and D. This technique is often used in
advanced sed scripts.
#!/usr/bin/sed -nf
$b
N
/^\(.*\)\n\1$/ {
# Print the first of the duplicated lines
s/.*\n//
p
# Search for a duplicate line --- until that, print what you find.
$b
N
/^\(.*\)\n\1$/ ! {
P
D
}
:c
# Got two equal lines in pattern space. At the
# end of the file we simply exit
$d
bx
8192 byte line lengths. GNU sed has no built-in limit on line length; as long as it can malloc()
more (virtual) memory, you can feed or construct lines as long as you like.
However, recursion is used to handle subpatterns and indefinite repetition. This means that
the available stack space may limit the size of the buffer that can be processed by certain
patterns.
7 Reporting Bugs
Email bug reports to bonzini@gnu.org. Be sure to include the word sed somewhere in the
Subject: field. Also, please include the output of sed --version in the body of your report
if at all possible.
Please do not send a bug report like this:
while building frobme-1.3.4
$ configure
error sed: file sedscr line 1: Unknown option to s
If GNU sed doesnt configure your favorite package, take a few extra minutes to identify the
specific problem and make a stand-alone test case. Unlike other programs such as C compilers,
making such test cases for sed is quite simple.
A stand-alone test case includes all the data necessary to perform the test, and the specific
invocation of sed that causes the problem. The smaller a stand-alone test case is, the better.
A test case should not involve something as far removed from sed as try to configure frobme-
1.3.4. Yes, that is in principle enough information to look for the bug, but that is not a very
practical prospect.
Here are a few commonly reported bugs that are not bugs.
N command on the last line
Most versions of sed exit without printing anything when the N command is issued
on the last line of a file. GNU sed prints pattern space before exiting unless of course
the -n command switch has been specified. This choice is by design.
For example, the behavior of
sed N foo bar
would depend on whether foo has an even or an odd number of lines10 . Or, when
writing a script to read the next few lines following a pattern match, traditional
implementations of sed would force you to write something like
/foo/{ $!N; $!N; $!N; $!N; $!N; $!N; $!N; $!N; $!N }
instead of just
10
which is the actual bug that prompted the change in behavior
Chapter 7: Reporting Bugs 28
/foo/{ N;N;N;N;N;N;N;N;N; }
In any case, the simplest workaround is to use $d;N in scripts that rely on the
traditional behavior, or to set the POSIXLY_CORRECT variable to a non-empty value.
Regex syntax clashes (problems with backslashes)
sed uses the posix basic regular expression syntax. According to the standard, the
meaning of some escape sequences is undefined in this syntax; notable in the case
of sed are \|, \+, \?, \, \, \<, \>, \b, \B, \w, and \W.
As in all GNU programs that use posix basic regular expressions, sed interprets these
escape sequences as special characters. So, x\+ matches one or more occurrences of
x. abc\|def matches either abc or def.
This syntax may cause problems when running scripts written for other seds. Some
sed programs have been written with the assumption that \| and \+ match the
literal characters | and +. Such scripts must be modified by removing the spurious
backslashes if they are to be used with modern implementations of sed, like GNU
sed.
On the other hand, some scripts use s|abc\|def||g to remove occurrences of either
abc or def. While this worked until sed 4.0.x, newer versions interpret this as
removing the string abc|def. This is again undefined behavior according to POSIX,
and this interpretation is arguably more robust: older seds, for example, required
that the regex matcher parsed \/ as / in the common case of escaping a slash, which
is again undefined behavior; the new behavior avoids this, and this is good because
the regex matcher is only partially under our control.
In addition, this version of sed supports several escape characters (some of which
are multi-character) to insert non-printable characters in scripts (\a, \c, \d, \o, \r,
\t, \v, \x). These can cause similar problems with scripts written for other seds.
-i clobbers read-only files
In short, sed -i will let you delete the contents of a read-only file, and in general
the -i option (see Chapter 2 [Invocation], page 1) lets you clobber protected files.
This is not a bug, but rather a consequence of how the Unix filesystem works.
The permissions on a file say what can happen to the data in that file, while the
permissions on a directory say what can happen to the list of files in that directory.
sed -i will not ever open for writing a file that is already on disk. Rather, it
will work on a temporary file that is finally renamed to the original name: if you
rename or delete files, youre actually modifying the contents of the directory, so the
operation depends on the permissions of the directory, not of the file. For this same
reason, sed does not let you use -i on a writeable file in a read-only directory, and
will break hard or symbolic links when -i is used on such a file.
0a does not work (gives an error)
There is no line 0. 0 is a special address that is only used to treat addresses like
0,/RE / as active when the script starts: if you write 1,/abc/d and the first line
includes the word abc, then that match would be ignored because address ranges
must span at least two lines (barring the end of the file); but what you probably
wanted is to delete every line up to the first one including abc, and this is obtained
with 0,/abc/d.
[a-z] is case insensitive
You are encountering problems with locales. POSIX mandates that [a-z] uses
the current locales collation order in C parlance, that means using strcoll(3)
instead of strcmp(3). Some locales have a case-insensitive collation order, others
dont.
Appendix A: Extended regular expressions 29
Another problem is that [a-z] tries to use collation symbols. This only happens
if you are on the GNU system, using GNU libcs regular expression matcher instead
of compiling the one supplied with GNU sed. In a Danish locale, for example, the
regular expression ^[a-z]$ matches the string aa, because this is a single collating
symbol that comes after a and before b; ll behaves similarly in Spanish locales,
or ij in Dutch locales.
To work around these problems, which may cause bugs in shell scripts, set the
LC_COLLATE and LC_CTYPE environment variables to C.
s/.*// does not clear pattern space
This happens if your input stream includes invalid multibyte sequences. posix
mandates that such sequences are not matched by ., so that s/.*// will not clear
pattern space as you would expect. In fact, there is no way to clear seds buffers in
the middle of the script in most multibyte locales (including UTF-8 locales). For
this reason, GNU sed provides a z command (for zap) as an extension.
To work around these problems, which may cause bugs in shell scripts, set the
LC_COLLATE and LC_CTYPE environment variables to C.
Concept Index
This is a general index of all issues discussed in this manual, with the exception of the sed
commands and command-line options.
0 G
0 address . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 Global substitution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
GNU extensions, /dev/stderr file . . . . . . . . . . . . . 9, 10
GNU extensions, /dev/stdin file . . . . . . . . . . . . . 10, 12
A GNU extensions, /dev/stdout file . . . . . . . . . . 1, 9, 10
Additional reading about sed . . . . . . . . . . . . . . . . . . . . 27 GNU extensions, 0 address . . . . . . . . . . . . . . . . . . . . . 4, 28
addr1,+N . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 GNU extensions, 0,addr2 addressing . . . . . . . . . . . . . . . 4
addr1,~N . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 GNU extensions, addr1,+N addressing . . . . . . . . . . . . . 4
Address, as a regular expression . . . . . . . . . . . . . . . . . . . 4 GNU extensions, addr1,~N addressing . . . . . . . . . . . . . 4
Address, last line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 GNU extensions, branch if s/// failed . . . . . . . . . . . . 12
Address, numeric . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 GNU extensions, case modifiers in s commands . . . . 8
Addresses, in sed scripts . . . . . . . . . . . . . . . . . . . . . . . . . . 3 GNU extensions, checking for their presence . . . . . . 12
Append hold space to pattern space . . . . . . . . . . . . . . 11 GNU extensions, disabling . . . . . . . . . . . . . . . . . . . . . . . . . 2
Append next input line to pattern space . . . . . . . . . . 10 GNU extensions, emptying pattern space . . . . . . 12, 29
Append pattern space to hold space . . . . . . . . . . . . . . 11 GNU extensions, evaluating Bourne-shell commands
Appending text after a line . . . . . . . . . . . . . . . . . . . . . . . . 9 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9, 11
GNU extensions, extended regular expressions . . . . . . 2
GNU extensions, g and number modifier interaction
B in s command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Backreferences, in regular expressions . . . . . . . . . . . . . . 8 GNU extensions, I modifier . . . . . . . . . . . . . . . . . . . . . 4, 9
Branch to a label, if s/// failed . . . . . . . . . . . . . . . . . . 12 GNU extensions, in-place editing . . . . . . . . . . . . . . . 1, 28
Branch to a label, if s/// succeeded . . . . . . . . . . . . . . 11 GNU extensions, L command . . . . . . . . . . . . . . . . . . . . . 11
Branch to a label, unconditionally . . . . . . . . . . . . . . . . 11 GNU extensions, M modifier . . . . . . . . . . . . . . . . . . . . . . . . 9
Buffer spaces, pattern and hold . . . . . . . . . . . . . . . . . . . . 3 GNU extensions, modifiers and the empty regular
Bugs, reporting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 expression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
GNU extensions, n ~m addresses . . . . . . . . . . . . . . . . . . . 4
GNU extensions, quitting silently . . . . . . . . . . . . . . . . . 11
C GNU extensions, R command . . . . . . . . . . . . . . . . . . . . . 12
Case-insensitive matching . . . . . . . . . . . . . . . . . . . . . . . . . 9 GNU extensions, reading a file a line at a time . . . . 12
Caveat #n on first line . . . . . . . . . . . . . . . . . . . . . . . . . 7 GNU extensions, reformatting paragraphs . . . . . . . . . 11
Command groups . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 GNU extensions, returning an exit code . . . . . . . . 8, 11
Comments, in scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 GNU extensions, setting line length . . . . . . . . . . . . . . . 10
Conditional branch . . . . . . . . . . . . . . . . . . . . . . . . . . . 11, 12 GNU extensions, special escapes . . . . . . . . . . . . . . 12, 28
Copy hold space into pattern space . . . . . . . . . . . . . . . 11 GNU extensions, special two-address forms . . . . . . . . . 4
Copy pattern space into hold space . . . . . . . . . . . . . . . 11 GNU extensions, subprocesses . . . . . . . . . . . . . . . . . . 9, 11
GNU extensions, to basic regular expressions . . . . 5, 6,
28
D GNU extensions, two addresses supported by most
Delete first line from pattern space . . . . . . . . . . . . . . . 10 commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9, 10
Disabling autoprint, from command line . . . . . . . . . . . 1 GNU extensions, unlimited line length . . . . . . . . . . . . 26
GNU extensions, writing first line to a file . . . . . . . . 12
Goto, in scripts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
E Greedy regular expression matching . . . . . . . . . . . . . . . 7
empty regular expression . . . . . . . . . . . . . . . . . . . . . . . . . . 4 Grouping commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Emptying pattern space . . . . . . . . . . . . . . . . . . . . . . 12, 29
Evaluate Bourne-shell commands . . . . . . . . . . . . . . . . . 11
Evaluate Bourne-shell commands, after substitution H
.............................................. 9 Hold space, appending from pattern space . . . . . . . . 11
Exchange hold space with pattern space . . . . . . . . . . 11 Hold space, appending to pattern space. . . . . . . . . . . 11
Excluding lines . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Hold space, copy into pattern space . . . . . . . . . . . . . . 11
Extended regular expressions, choosing . . . . . . . . . . . . 2 Hold space, copying pattern space into . . . . . . . . . . . 11
Extended regular expressions, syntax . . . . . . . . . . . . . 29 Hold space, definition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
Hold space, exchange with pattern space . . . . . . . . . 11
F
Files to be processed as input . . . . . . . . . . . . . . . . . . . . . 3 I
Flow of control in scripts . . . . . . . . . . . . . . . . . . . . . . . . . 11 In-place editing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
Concept Index 31
W
Q Working on separate files . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Quitting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8, 11 Write first line to a file . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Write to a file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
R
Range of lines . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 Z
Range with start address of zero . . . . . . . . . . . . . . . . . . . 4 Zero, as range start address . . . . . . . . . . . . . . . . . . . . . . . 4
Command and Option Index 32
Command and Option Index 33
# H
# (comments) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 H (append Hold) command . . . . . . . . . . . . . . . . . . . . . . . . 11
h (hold) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
-
--binary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 I
--expression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 i (insert text lines) command . . . . . . . . . . . . . . . . . . 10
--file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
--follow-symlinks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
--help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 L
--in-place . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
L (fLow paragraphs) command . . . . . . . . . . . . . . . . . . . . 11
--line-length . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
l (list unambiguously) command . . . . . . . . . . . . . . . . 10
--quiet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
--regexp-extended . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
--silent . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 N
--unbuffered . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
--version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 N (append Next line) command . . . . . . . . . . . . . . . . . . . 10
-b . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 n (next-line) command . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
-e . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
-f . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
-i . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 P
-l . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 P (print first line) command . . . . . . . . . . . . . . . . . . . 11
-n . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 p (print) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
-n, forcing from within a script . . . . . . . . . . . . . . . . 7
-r . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
-u . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Q
q (quit) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
: Q (silent Quit) command . . . . . . . . . . . . . . . . . . . . . . . . 11
: (label) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
R
= r (read file) command . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
= (print line number) command . . . . . . . . . . . . . . . . . . 10 R (read line) command . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
{ S
{} command grouping . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 s command, option flags . . . . . . . . . . . . . . . . . . . . . . . . . 8
A T
a (append text lines) command . . . . . . . . . . . . . . . . . . . 9 T (test and branch if failed) command . . . . . . . . . 12
t (test and branch if successful) command . . . . . 11
B V
b (branch) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
v (version) command. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
C
c (change to text lines) command . . . . . . . . . . . . . . . 10
W
w (write file) command . . . . . . . . . . . . . . . . . . . . . . . . . 10
W (write first line) command . . . . . . . . . . . . . . . . . . . 12
D
D (delete first line) command . . . . . . . . . . . . . . . . . . 10 X
d (delete) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
x (eXchange) command . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
E
e (evaluate) command . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Y
y (transliterate) command . . . . . . . . . . . . . . . . . . . . . . . 9
G
G (appending Get) command . . . . . . . . . . . . . . . . . . . . . . 11 Z
g (get) command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11