shithub: trueawk

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