we don't need to pre-create Koha staging tables since mig link and mig stage can...
[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 }