diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-04-21 15:01:03 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-04-21 15:01:03 +0300 |
commit | 847657fa4ec580658371d6fcaea547f7769fb569 (patch) | |
tree | 73521ae6691edc38c503a20725135a7a7ac95d93 /test/fscaret.awk | |
parent | 4c28839cbd2c40f7dacc5185fee352eb28f69ac5 (diff) | |
download | egawk-847657fa4ec580658371d6fcaea547f7769fb569.tar.gz egawk-847657fa4ec580658371d6fcaea547f7769fb569.tar.bz2 egawk-847657fa4ec580658371d6fcaea547f7769fb569.zip |
Fix bug with ^ in FS.
Diffstat (limited to 'test/fscaret.awk')
-rw-r--r-- | test/fscaret.awk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/fscaret.awk b/test/fscaret.awk new file mode 100644 index 00000000..134820d7 --- /dev/null +++ b/test/fscaret.awk @@ -0,0 +1,8 @@ +BEGIN { + FS="^." + OFS="|" +} +{ + $1 = $1 +} +1 |