awk/bugs-fixed/numeric-output-seps.awk
2018-09-23 17:35:45 -07:00

9 lines
79 B
Awk

BEGIN {
$0 = "a b c";
OFS = 1;
ORS = 2;
NF = 2;
print;
print "d", "e";
}