spider/cmd/do.pl
minima 5f2487385b added inscript test to selected commands
fixed problem with dxcommandmode in perl < 5.8
added spanish translations for script commands
2005-01-15 22:03:46 +00:00

16 lines
298 B
Perl

#
# do anything
#
# Rape me!
#
# Copyright (c) 2000 - Dirk Koopman G1TLH
#
# $Id$
#
my ($self, $line) = @_;
return (1, $self->msg('e5')) if $self->priv < 9 || $self->remotecmd || $self->inscript;
Log('DXCommand', $self->call . " do $line" );
eval "$line";
return (1, $@ ? $@ : "Ok, done $line" );