shithub: trueawk

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