X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fuser.pl;fp=cmd%2Fshow%2Fuser.pl;h=0000000000000000000000000000000000000000;hb=2546ef0cfaaca39e65985e414258071a636979af;hp=997ae542b6bbcf9fe9f5785320396a352c44bf66;hpb=fdc1150da7dbd9c1094d8df7a4744fb917017ed2;p=spider.git diff --git a/cmd/show/user.pl b/cmd/show/user.pl deleted file mode 100644 index 997ae542..00000000 --- a/cmd/show/user.pl +++ /dev/null @@ -1,24 +0,0 @@ -# -# show either the current user or a nominated set -# -# $Id$ -# - -my ($self, $line) = @_; -my @list = split /\s+/, $line; # generate a list of callsigns -@list = ($self->call) if !@list; # my channel if no callsigns - -my $call; -my @out; -foreach $call (@list) { - $call = uc $call; - my $ref = DXUser->get_current($call); - if ($ref) { - @out = print_all_fields($self, $ref, "User Information $call"); - } else { - push @out, "User: $call not found"; - } - push @out, "" if @list > 1; -} - -return (1, @out);