remove $Id$ strings from everywhere that I can find
[spider.git] / cmd / show / dup_eph.pl
1 #
2 # show a list of all the outstanding announce dups
3 # for debugging really
4 #
5 # Copyright (c) 2000 Dirk Koopman G1TLH
6 #
7 #
8 #
9 my $self = shift;
10 my $line = shift;
11 return (1, $self->msg('e5')) unless $self->priv >= 9; 
12 my $regex = $line;
13 my @out;
14 my %list = DXProt::eph_list();
15
16 for (keys %list ) {
17         if ($regex) {
18                 next unless /$regex/i;
19         }
20         push @out, ztime($list{$_}) . ": $_";
21 }
22 return (1, sort @out);
23