jdk-24/jdk/test/sun/tools/jps/jps-q_Output1.awk

20 lines
219 B
Awk
Raw Normal View History

2007-12-01 00:00:00 +00:00
#
BEGIN {
totallines=0; matched=0
}
/^[0-9]+$/ {
matched++;
}
{ totallines++; print $0 }
END {
if ((totallines > 0) && (matched >= 1)) {
exit 0
}
else {
exit 1
}
}