fix search terms starting with \d+ in sh/log etc
[spider.git] / cmd / show / rcmd.pl
index ef45b6c6b3aff3412e8147626995e3843760c665..df64298b640e161b870ee6fa4fddce16a250ea9f 100644 (file)
@@ -27,11 +27,14 @@ while ($f = shift @f) {                 # next field
                next if $to;
        }
        next if $who;
-       ($who) = $f =~ /^(\w+)/o;
+       if ($f !~ /^\d+$/) {
+               ($who) = $f;
+       }
 }
 
 $to = 20 unless $to;
 $from = 0 unless $from;
 
-@out = DXLog::print($from, $to, $main::systime, 'rcmd', $who);
-return (1, @out);
+return (1, DXLog::print($from, $to, $main::systime, 'rcmd', $who)) if $self->{_nospawn};
+return (1, $self->spawn_cmd("show/rcmd $cmdline", \&DXLog::print, args => [$from, $to, $main::systime, 'rcmd', $who]));
+