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|sun|com\.sun]\..+=.*$/ { count++ }
END {
if ((count == 0) && (totallines != 0)) {
exit 0
}
else {
exit 1
}
}