shithub: trueawk

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