7 lines
79 B
Awk
7 lines
79 B
Awk
|
{
|
||
|
if ($1 !~ /^+[2-9]/)
|
||
|
print "gawk is broken"
|
||
|
else
|
||
|
print "gawk is ok"
|
||
|
}
|