6 # this appears to be a reasonable thing for users to do (thank you JE1SGH)
7 # return (1, $self->msg('e5')) if $self->priv < 9;
10 my @f = split /\s+/, $cmdline;
16 while ($f = shift @f) { # next field
17 # print "f: $f list: ", join(',', @list), "\n";
19 ($from, $to) = $f =~ /^(\d+)-(\d+)$/o; # is it a from -> to count?
20 next if $from && $to > $from;
23 ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count?
29 $from = 0 unless $from;
31 @out = $self->spawn_cmd(\&DXLog::print, args => [$from, $to, $main::systime, 'ann', 'WX']);
33 #@out = DXLog::print($from, $to, $main::systime, 'ann', $who);