mig-quick for doing the add/skip-iconv/clean/convert/stage dance without any argument...
[migration-tools.git] / text / strip_cm_tabs
1 #!/usr/bin/perl -w
2 while (my $line = <>) {
3     chomp $line;
4     $line =~ s/\x0D\x09/_/g;
5     print "$line\n";
6 }