xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/nfloop.awk (revision 45ede40b2394db7967e59f19288fae9b62efd4aa)
1BEGIN {
2	$0 = "aaa"
3	NF = 10
4	for (j = 2; j <= NF; ++j) {
5		$j = "_"
6	}
7	print
8}
9