shithub: trueawk

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