shithub: trueawk

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