diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-11-03 22:01:04 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-11-03 22:01:04 +0200 |
commit | a4f9e9d4adbbf55a4225484ef3d04e8cf5e3046c (patch) | |
tree | 9aea74035cf66150aabf5bb41feb349e7a580954 /test/fpat7.awk | |
parent | e6b8d8dcc8bf46028c2e26586afb1cd6ea184a59 (diff) | |
download | egawk-a4f9e9d4adbbf55a4225484ef3d04e8cf5e3046c.tar.gz egawk-a4f9e9d4adbbf55a4225484ef3d04e8cf5e3046c.tar.bz2 egawk-a4f9e9d4adbbf55a4225484ef3d04e8cf5e3046c.zip |
Fix a bug with FPAT field parsing.
Diffstat (limited to 'test/fpat7.awk')
-rw-r--r-- | test/fpat7.awk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/fpat7.awk b/test/fpat7.awk new file mode 100644 index 00000000..9b8a6775 --- /dev/null +++ b/test/fpat7.awk @@ -0,0 +1,2 @@ +BEGIN { FPAT = "[^,]*" } +{ print $1, $2 } |