X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fdup_eph.pl;h=6b0ec83c04f16e156d797db89c32543813d19e56;hb=f493dbf120a0a175a7788ee51c9928377b0f4c50;hp=c8abccc1f24c64e925b4f850ac5c7c5a53761626;hpb=55f3823f3ad86d76e1e995b0f255f1804684de18;p=spider.git diff --git a/cmd/show/dup_eph.pl b/cmd/show/dup_eph.pl index c8abccc1..6b0ec83c 100644 --- a/cmd/show/dup_eph.pl +++ b/cmd/show/dup_eph.pl @@ -4,9 +4,20 @@ # # Copyright (c) 2000 Dirk Koopman G1TLH # -# $Id$ +# # 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); +