shithub: trueawk

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