jdk/test/sun/tools/jstat/snap1.awk
author jjg
Mon, 25 Nov 2013 17:42:28 -0800
changeset 21894 3535c1819067
parent 2 90ce3da70b43
permissions -rw-r--r--
8028318: [doclint] doclint will reject existing user-written doc comments using custom tags that follow the recommended rules Reviewed-by: darcy

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

	{ totallines++; print $0 }

$0 !~ /java\..+=.*$/	{ count++ }

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