Blame view

LIA_kaldiUtils/replace_un_in.pl 121 Bytes
ec85f8892   bigot benjamin   first commit
1
2
3
4
5
6
7
8
9
10
  #!/usr/bin/perl
  use strict;
  
  while(<>){
  	chomp;
  	my @t = split('\t',$_);
  	$t[1] =~ s/un/in/g;
  	print "$t[0]\t$t[1]
  ";
  }