jdk/test/sun/tools/jps/jps_Output1.awk
author duke
Wed, 05 Jul 2017 18:59:09 +0200 (2017-07-05)
changeset 18016 5dbc2241ed9c
parent 14329 01f78346929c
child 18581 8efa694a57af
permissions -rw-r--r--
Added tag jdk8-b94 for changeset 0d804e3b955d
#
BEGIN	{
	    totallines=0; matched=0
	}

# match on a main class name
/^[0-9]+ [a-z|A-Z][a-z|A-Z|0-9|\$|\+]*$/	{
	    matched++;
	}

# or match on a path name to a jar file - note, jar files ending with
# ".jar" is only a convention, not a requirement. Theoretically,
# any valid file name could occur here.
/^[0-9]+ .*\.jar$/	{
	    matched++;
}

# or match on the condition that the class name is not available
/^[0-9]+ -- .*$/	{
	    matched++;
	}

# or match an empty class name
/^[0-9]+ $/	{
	    matched++;
	}

	{ totallines++; print $0 }

END	{
	    if ((totallines > 0) && (matched == totallines)) {
	        exit 0
	    }
	    else {
	        exit 1
	    }
	}