shithub: trueawk

ref: fcc0e7b0f8eb8bdaf909b03f5b4d0f0833cf4292
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";
}