shithub: trueawk

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