9 lines
70 B
Awk
9 lines
70 B
Awk
BEGIN { RS = "" }
|
|
|
|
{
|
|
if (/^@/)
|
|
print "not ok"
|
|
else
|
|
print "ok"
|
|
}
|