shithub: trueawk

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