shithub: trueawk

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