mirror of
https://bitbucket.org/swgmasters/swg-src.git
synced 2026-01-17 00:06:23 -05:00
12 lines
109 B
Perl
Executable File
12 lines
109 B
Perl
Executable File
#!/bin/perl
|
|
|
|
while (<>)
|
|
{
|
|
if (s/ - \S+ \S+ \d+ \(\S+\)$// == 0)
|
|
{
|
|
die "bad string: " . $_;
|
|
}
|
|
|
|
print;
|
|
}
|