shithub: trueawk

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