Files
Android11/external/one-true-awk/bugs-fixed/numeric-output-seps.awk
2023-10-13 14:01:41 +00:00

9 lines
79 B
Awk

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