shithub: trueawk

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