2 # print out the wcy stats
4 # Copyright (c) 2000 - Dirk Koopman G1TLH
11 my @f = split /\s+/, $cmdline;
17 while ($f = shift @f) { # next field
18 # print "f: $f list: ", join(',', @list), "\n";
20 ($from, $to) = $f =~ /^(\d+)-(\d+)$/o; # is it a from -> to count?
21 next if $from && $to > $from;
24 ($to) = $f =~ /^(\d+)$/o; # is it a to count?
29 $from = 1 unless $from;
32 push @out, $self->msg('wcy3');
33 my @in = WCY::search($from, $to, $main::systime);
35 push @out, WCY::print_item($_);