RE: Starting other programs

2002-06-10 Thread kbatzer
Try using NT/W2K Start: $command1 = notepad.exe; $command2 = wordpad.exe; $command3 = calc.exe; system (start $command1); system (start $command2); system (start $command3); Kirk W. Batzer [EMAIL PROTECTED] :-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

RE: eval expression and NT-W2K security

2002-06-06 Thread kbatzer
Wallace wrote: kbatzer, You could filter the expression using regular expressions before passing it to 'eval'. For instance, if you know what commands the users are expecting to execute, you could limit it to those commands, using something like this: my $usercmd