shithub: trueawk

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