Koha/misc/fixorders.pl2
2000-12-19 23:45:51 +00:00

14 lines
187 B
Perl
Executable file

#!/usr/bin/perl
use strict;
my $olddat;
while (my $dat =<STDIN>){
my @data=split(/\t/,$dat);
if ($dat eq $olddat){
# print "oi";
} else {
print $dat;
}
$olddat=$dat;
}