Files
ostrich/tools/dataLintParser.pl
2018-01-20 13:55:01 -06:00

12 lines
142 B
Perl
Executable File

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