fix probs with eph dup deleting
[spider.git] / cmd / show / dup_eph.pl
index c8abccc1f24c64e925b4f850ac5c7c5a53761626..cc0b21495a12547ab37599aa31572ee401294b5e 100644 (file)
@@ -9,4 +9,15 @@
 my $self = shift;
 my $line = shift;
 return (1, $self->msg('e5')) unless $self->priv >= 9; 
-return (1, DXProt::eph_list $line);
+my $regex = $line;
+my @out;
+my %list = DXProt::eph_list();
+
+for (keys %list ) {
+       if ($regex) {
+               next unless /$regex/i;
+       }
+       push @out, ztime($list{$_}) . ": $_";
+}
+return (1, sort @out);
+