Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/tools/jstat/snap1.awk
38839 views
#
BEGIN { totallines=0; count=0; }
{ totallines++; print $0 }
$0 !~ /java\..+=.*$/ { count++ }
END {
if ((count == 0) && (totallines != 0)) {
exit 0
}
else {
exit 1
}
}