shithub: trueawk

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