diff options
author | Suchang Woo <suchang.woo@samsung.com> | 2015-12-18 13:25:01 +0900 |
---|---|---|
committer | Suchang Woo <suchang.woo@samsung.com> | 2015-12-18 13:25:01 +0900 |
commit | c422f95670269a00181e4a8152f098dde21ea089 (patch) | |
tree | 0c8ec1283fc576d0fbfd1ae5769823ec3676a962 /testsuite/fasts.sed | |
download | sed-upstream.tar.gz sed-upstream.tar.bz2 sed-upstream.zip |
Imported Upstream version 4.1cupstream/4.1cupstream
Diffstat (limited to 'testsuite/fasts.sed')
-rw-r--r-- | testsuite/fasts.sed | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/testsuite/fasts.sed b/testsuite/fasts.sed new file mode 100644 index 0000000..5e482f7 --- /dev/null +++ b/testsuite/fasts.sed @@ -0,0 +1,46 @@ +# test `fast' substitutions + +h +s/a// +p +g +s/a//g +p +g +s/^a//p +g +s/^a//g +p +g +s/not present//g +p +g +s/^[a-z]//g +p +g +s/a$// +p +g + +y/a/b/ +h +s/b// +p +g +s/b//g +p +g +s/^b//p +g +s/^b//g +p +g +s/^[a-z]//g +p +g +s/b$// +p +g + + + |