Files
whitengold/tools/dataLintParser.pl
2020-10-21 20:08:04 -04:00

12 lines
142 B
Perl

$what = shift;
while ($a = <>)
{
if ($a =~ /^\s*\d+\s+Error:/)
{
print if (eval $what);
$_ = "";
}
$_ .= $a;
}
print if (eval $what);