shithub: trueawk

ref: 275a80ff33ef2782f27c4fd720b65645c89e2bbb
dir: /testdir/t.contin/

View raw version
{
for (i = 1; i <= NF; i++) {
	if ($i ~ /^[0-9]+$/)
		continue;
	print $i, " is non-numeric"
	next
}
print $0, "is all numeric"
}