Files
whitengold/tools/stripChangeType.pl
T
2020-10-21 20:08:04 -04:00

12 lines
109 B
Perl

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