shithub: trueawk

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