repo.or.cz
/
client-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update readme and add gitignore
[client-tools.git]
/
tools
/
dataLintParser.pl
blob
4871400d6a576adfb6d8ab18751059b8ca5b918b
1
$what
=
shift
;
2
while
(
$a
= <>)
3
{
4
if
(
$a
=~
/^\s*\d+\s+Error:/
)
5
{
6
print
if
(
eval
$what
);
7
$_
=
""
;
8
}
9
$_
.=
$a
;
10
}
11
print
if
(
eval
$what
);