shithub: trueawk

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