diff options
author | Rob Landley <rob@landley.net> | 2005-05-18 06:34:37 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-05-18 06:34:37 +0000 |
commit | 93850a56b2257ca5d0b2bbea82348622d83011b8 (patch) | |
tree | 7fd0b5bfa26882183b865198485c08aa11d9feac /testsuite/sed | |
parent | 5797c7f0ef93f3efd0ba6634640f9591716214e3 (diff) | |
download | busybox-w32-93850a56b2257ca5d0b2bbea82348622d83011b8.tar.gz busybox-w32-93850a56b2257ca5d0b2bbea82348622d83011b8.tar.bz2 busybox-w32-93850a56b2257ca5d0b2bbea82348622d83011b8.zip |
Patch from Colin Watson (mangled slightly by Rob Landley):
This patch implements the 'T' command in sed. This is a GNU extension,
but one of the udev hotplug scripts uses it, so I need it in busybox
anyway.
Includes a test; 'svn add testsuite/sed/sed-branch-conditional-inverted'
after applying.
Diffstat (limited to 'testsuite/sed')
-rwxr-xr-x | testsuite/sed/sed-branch-conditional-inverted | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/sed/sed-branch-conditional-inverted b/testsuite/sed/sed-branch-conditional-inverted new file mode 100755 index 000000000..f4df84b3e --- /dev/null +++ b/testsuite/sed/sed-branch-conditional-inverted | |||
@@ -0,0 +1,14 @@ | |||
1 | busybox sed 's/a/1/;T notone;p;: notone;p'>output <<EOF | ||
2 | a | ||
3 | b | ||
4 | c | ||
5 | EOF | ||
6 | cmp -s output - <<EOF | ||
7 | 1 | ||
8 | 1 | ||
9 | 1 | ||
10 | b | ||
11 | b | ||
12 | c | ||
13 | c | ||
14 | EOF | ||