mirror of
https://bitbucket.org/swgmasters/client-tools.git
synced 2026-07-14 08:01:27 -04:00
12 lines
109 B
Perl
12 lines
109 B
Perl
#!/bin/perl
|
|
|
|
while (<>)
|
|
{
|
|
if (s/ - \S+ \S+ \d+ \(\S+\)$// == 0)
|
|
{
|
|
die "bad string: " . $_;
|
|
}
|
|
|
|
print;
|
|
}
|