Improve M$ Windows compatibility
[spider.git] / cmd / show / rcmd.pl
index 0a362075ce0005e17e549bee2d7b98c3db81eeef..0143b29063270c2e7babfef5b100529266293e5e 100644 (file)
@@ -27,7 +27,7 @@ while ($f = shift @f) {                 # next field
                next if $to;
        }
        next if $who;
-       if ($f !~ /^\d+/) {
+       if ($f !~ /^\d+$/) {
                ($who) = $f;
        }
 }
@@ -35,6 +35,6 @@ while ($f = shift @f) {                 # next field
 $to = 20 unless $to;
 $from = 0 unless $from;
 
-return (1, DXLog::print($from, $to, $main::systime, 'rcmd', $who)) if $self->{_nospawn};
+return (1, DXLog::print($from, $to, $main::systime, 'rcmd', $who)) if ($self->{_nospawn} || $main::is_win == 1);
 return (1, $self->spawn_cmd("show/rcmd $cmdline", \&DXLog::print, args => [$from, $to, $main::systime, 'rcmd', $who]));