initial commit

This commit is contained in:
SWG Master
2015-08-04 12:05:18 -05:00
commit 37ab0ad070
104847 changed files with 14347244 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
$what = shift;
while ($a = <>)
{
if ($a =~ /^\s*\d+\s+Error:/)
{
print if (eval $what);
$_ = "";
}
$_ .= $a;
}
print if (eval $what);