shithub: trueawk

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