summaryrefslogtreecommitdiff
path: root/usr/src/test/util-tests/tests/awk/bugs-fixed/numeric-output-seps.awk
blob: daa0f72aa6ff6149969f106312e5e626c898f73c (plain)
1
2
3
4
5
6
7
8
BEGIN {
	$0 = "a b c";
	OFS = 1;
	ORS = 2;
	NF = 2;
	print;
	print "d", "e";
}