mirror of
https://github.com/swg-ostrich/ostrich.git
synced 2026-01-16 23:04:19 -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;
|
|
}
|