X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fstat%2Fcluster.pl;fp=cmd%2Fstat%2Fcluster.pl;h=0000000000000000000000000000000000000000;hb=07d281a1a976f136e00a541d9d157bb750ac4cb5;hp=539a1136341b9c214801e072e5e8932e8759943c;hpb=d2c1a8cb2a31725e3b9084aee3ec43e585e3273f;p=spider.git diff --git a/cmd/stat/cluster.pl b/cmd/stat/cluster.pl deleted file mode 100644 index 539a1136..00000000 --- a/cmd/stat/cluster.pl +++ /dev/null @@ -1,24 +0,0 @@ -# -# show a cluster thingy -# -# $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 = DXCluster->get_exact($call); - if ($ref) { - @out = print_all_fields($self, $ref, "Cluster Information $call"); - } else { - push @out, "Cluster: $call not found"; - } - push @out, "" if @list > 1; -} - -return (1, @out);