shithub: trueawk

ref: bae27a93c1298f3c7fcb1cd10e690c59a4fcc3f1
dir: /bugs-fixed/numeric-output-seps.awk/

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