Files
ostrich/tools/stripChangeType.pl
2018-01-20 13:55:01 -06:00

12 lines
109 B
Perl
Executable File

#!/bin/perl
while (<>)
{
if (s/ - \S+ \S+ \d+ \(\S+\)$// == 0)
{
die "bad string: " . $_;
}
print;
}