2 # print out the general log file
4 # Copyright (c) 1998 - Dirk Koopman G1TLH
11 my @f = split /\s+/, $cmdline;
14 my ($from, $to, $who, $hint);
17 while ($f = shift @f) { # next field
18 # print "f: $f list: ", join(',', @list), "\n";
19 unless ($from || $to) {
20 ($from, $to) = $f =~ /^(\d+)-(\d+)$/o; # is it a from -> to count?
21 next if $from && $to > $from;
24 ($to) = $f =~ /^(\d+)$/o if !$to; # is it a to count?
34 $from = 0 unless $from;
36 if ($self->priv < 6) {
37 return (1, $self->msg('e5')) if defined $who && $who ne $self->call;
41 @out = DXLog::print($from, $to, $main::systime, undef, $who);