mirror of
https://bitbucket.org/theswgsource/client-tools-1.2.git
synced 2026-01-16 23:04:40 -05: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;
|
|
}
|