shithub: trueawk

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