shithub: trueawk

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