summaryrefslogtreecommitdiff
path: root/corpus/support/fix-contract.pl
blob: f1e191ab0af60dfb8734549c53352cf9119ad1f9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl -w
use strict;
while(<>) {
  #s/ (pre|anti|re|pro|inter|intra|multi|e|x|neo) - / $1- /ig;
  #s/ - (year) - (old)/ -$1-$2/ig;
  s/ ' (s|m|ll|re|d|ve) / '$1 /ig;
  s/n ' t / n't /ig;
  print;
}