[Top] | [Contents] | [Index] | [ ? ] |
Footnotes
(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
(2)
Note that GNU sed
creates the backup
file whether or not any output is actually changed.
(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
.
(4)
This is equivalent to p
unless the ‘-i’
option is being used.
(5)
This is equivalent to p
unless the ‘-i’
option is being used.
(6)
All
the escapes introduced here are GNU
extensions, with the exception of \n
. In basic regular
expression mode, setting POSIXLY_CORRECT
disables them inside
bracket expressions.
(7)
sed
guru Greg
Ubben wrote an implementation of the dc
RPN calculator!
It is distributed together with sed.
(8)
This requires another script to pad the output of banner; for example
#! /bin/sh banner -w $1 $2 $3 $4 | sed -e :a -e '/^.\{0,'$1'\}$/ { s/$/ /; ba; }' | ~/sedscripts/reverseline.sed
(9)
Some implementations have a limit of 199 commands per script
(10)
which is the actual “bug” that prompted the change in behavior
[Top] | [Contents] | [Index] | [ ? ] |
This document was generated on January 5, 2013 using texi2html 5.0.