blob: 0cda3ca52b63a5b61c6a3152a79f834c39758b96 [file] [log] [blame]
#
BEGIN {
totallines=0; matched=0
}
/^[0-9]+ Jps -vm.* -XX:\+UseParallelGC$/ {
matched++;
}
{ totallines++; print $0 }
END {
if ((totallines > 0) && (matched >= 1)) {
exit 0
}
else {
exit 1
}
}