2012-01-04 03:49:35 -08:00
|
|
|
#
|
|
|
|
BEGIN {
|
2012-02-15 09:29:05 -08:00
|
|
|
totallines=0; matched=0; current=0
|
2012-01-04 03:49:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
# match on a main class name followed by arbitrary arguments
|
|
|
|
/^[0-9]+ [a-z|A-Z][a-z|A-Z|0-9|\.]*($| .*$)/ {
|
2012-02-15 09:29:05 -08:00
|
|
|
current=1;
|
2012-01-04 03:49:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
# or match on a path name to a jar file followed by arbitraty arguments
|
|
|
|
# - note, jar files ending with ".jar" is only a convention, not a requirement.
|
|
|
|
#Theoretically, any valid file name could occur here.
|
|
|
|
/^[0-9]+ .*\.jar($| .*$)/ {
|
2012-02-15 09:29:05 -08:00
|
|
|
current=1;
|
2012-01-04 03:49:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
# or match on the condition that the class name is not available
|
|
|
|
/^[0-9]+ -- process information unavailable$/ {
|
2012-02-15 09:29:05 -08:00
|
|
|
current=1;
|
2012-01-04 03:49:35 -08:00
|
|
|
}
|
|
|
|
|
2012-03-20 12:48:48 +01:00
|
|
|
# or match an empty class name
|
|
|
|
/^[0-9]+ $/ {
|
|
|
|
current=1;
|
|
|
|
}
|
|
|
|
|
2012-02-15 09:29:05 -08:00
|
|
|
{ totallines++; matched+=current; current=0; print $0 }
|
2012-01-04 03:49:35 -08:00
|
|
|
|
|
|
|
END {
|
|
|
|
if ((totallines > 0) && (matched == totallines)) {
|
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
}
|