Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
15 lines
212 B
Awk
15 lines
212 B
Awk
#
|
|
BEGIN { totallines=0; count=0; }
|
|
|
|
{ totallines++; print $0 }
|
|
|
|
$0 !~ /java\..+=.*$/ { count++ }
|
|
|
|
END {
|
|
if ((count == 0) && (totallines != 0)) {
|
|
exit 0
|
|
}
|
|
else {
|
|
exit 1
|
|
}
|
|
}
|