jdk-24/jdk/test/sun/tools/jps/jps-Vm_Output2.awk
2007-12-01 00:00:00 +00:00

20 lines
249 B
Awk

#
BEGIN {
totallines=0; matched=0
}
/^[0-9]+ Jps -Vm.* \+DisableExplicitGC$/ {
matched++;
}
{ totallines++; print $0 }
END {
if ((totallines > 0) && (matched >= 1)) {
exit 0
}
else {
exit 1
}
}