awk/testdir/t.break

8 lines
91 B
Plaintext

{
for (i=1; i <= NF; i++)
if ($i ~ /^[a-z]+$/) {
print $i " is alphabetic"
break
}
}