xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/t.contin (revision 5801b0f01c3c34499a929ed96164a5a68b470945)
1{
2for (i = 1; i <= NF; i++) {
3	if ($i ~ /^[0-9]+$/)
4		continue;
5	print $i, " is non-numeric"
6	next
7}
8print $0, "is all numeric"
9}
10