2007-12-01 00:00:00 +00:00
|
|
|
#
|
|
|
|
BEGIN {
|
|
|
|
totallines=0; matched=0
|
|
|
|
}
|
|
|
|
|
|
|
|
# match on a fully qualified class name
|
|
|
|
/^[0-9]+ [a-z|A-Z][a-z|A-Z|0-9|\.|\$|\+]*$/ {
|
|
|
|
matched++;
|
|
|
|
}
|
|
|
|
|
|
|
|
# or match on a jar file name - note, jar files ending with
|
|
|
|
# ".jar" is only a convention , not a requirement. Theoretically,
|
|
|
|
# any valid file name could occur here.
|
|
|
|
/^[0-9]+ .*\.jar$/ {
|
|
|
|
matched++;
|
|
|
|
}
|
|
|
|
|
|
|
|
# or match on the condition that the class name is not available
|
2012-10-29 08:23:55 +00:00
|
|
|
/^[0-9]+ -- .*$/ {
|
2007-12-01 00:00:00 +00:00
|
|
|
matched++;
|
|
|
|
}
|
|
|
|
|
2012-03-20 11:48:48 +00:00
|
|
|
# or match an empty class name
|
|
|
|
/^[0-9]+ $/ {
|
|
|
|
matched++;
|
|
|
|
}
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
{ totallines++; print $0 }
|
|
|
|
|
|
|
|
END {
|
|
|
|
if ((totallines > 0) && (matched == totallines)) {
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|