shithub: trueawk

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