jdk/test/sun/tools/jstat/snap2.awk
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 30376 2ccf2cf7ea48
permissions -rw-r--r--
Initial load

#
BEGIN	{ totallines=0; count=0; }

	{ totallines++; print $0 }

$0 !~ /[java|sun|com\.sun]\..+=.*$/	{ count++ }

END	{
	    if ((count == 0) && (totallines != 0)) {
	        exit 0
	    }
	    else {
	        exit 1
	    }
	}