2 # show either the current user or a nominated set
7 my ($self, $line) = @_;
8 my @list = split /\s+/, $line; # generate a list of callsigns
9 @list = ($self->call) if !@list; # my channel if no callsigns
13 foreach $call (@list) {
15 my $ref = DXUser->get_current($call);
17 if ($self->consort eq 'ax25') {
18 @out = grep { !/(Password|Privilege)/ } print_all_fields($self, $ref, "User Information $call");
20 @out = print_all_fields($self, $ref, "User Information $call");
23 push @out, "User: $call not found";
25 push @out, "" if @list > 1;