shithub: trueawk

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