awk/bugs-fixed/numeric-output-seps.awk

9 lines
79 B
Awk

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