diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:16:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-27 18:16:28 +0300 |
commit | ab74a66c1b92c3d84ce39d764794225acc630a62 (patch) | |
tree | b8038c650349c7f2ac99965827e98eeb160e8468 /test/rscompat.awk | |
parent | e81b0ee3ba90939adf124905d82856f7ea981af4 (diff) | |
download | egawk-ab74a66c1b92c3d84ce39d764794225acc630a62.tar.gz egawk-ab74a66c1b92c3d84ce39d764794225acc630a62.tar.bz2 egawk-ab74a66c1b92c3d84ce39d764794225acc630a62.zip |
Fix multicharacter RS in traditional/posix modes.
Diffstat (limited to 'test/rscompat.awk')
-rw-r--r-- | test/rscompat.awk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rscompat.awk b/test/rscompat.awk new file mode 100644 index 00000000..9415c704 --- /dev/null +++ b/test/rscompat.awk @@ -0,0 +1,2 @@ +BEGIN { RS = "bar" } +{ print $1, $2 } |