got routing essentially working
[spider.git] / cmd / show / user.pl
diff --git a/cmd/show/user.pl b/cmd/show/user.pl
deleted file mode 100644 (file)
index 997ae54..0000000
+++ /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);