diff options
Diffstat (limited to 'bugs-fixed/numeric-output-seps.awk')
-rw-r--r-- | bugs-fixed/numeric-output-seps.awk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bugs-fixed/numeric-output-seps.awk b/bugs-fixed/numeric-output-seps.awk new file mode 100644 index 000000000000..daa0f72aa6ff --- /dev/null +++ b/bugs-fixed/numeric-output-seps.awk @@ -0,0 +1,8 @@ +BEGIN { + $0 = "a b c"; + OFS = 1; + ORS = 2; + NF = 2; + print; + print "d", "e"; +} |