mirror of
https://github.com/SWG-Source/swg-main.git
synced 2026-01-16 20:04:18 -05:00
17 lines
250 B
Perl
Executable File
17 lines
250 B
Perl
Executable File
while (<>)
|
|
{
|
|
chomp;
|
|
s/\d+\s+\d+\.\d+\s+\[\d+\]\s+//;
|
|
s/\s+$//;
|
|
|
|
$file = $_ if ($opening);
|
|
$opening = /^opening/;
|
|
|
|
if (defined($file) && /WARNING/)
|
|
{
|
|
print $file, "\n" if ($printed ne $file);
|
|
$printed = $file;
|
|
print "\t", $_, "\n"
|
|
}
|
|
}
|