shithub: trueawk

ref: 829f5258e66609a91efebe72e18d7cd5e80987f9
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"
}