Tushar Gokhale wrote:
> I'm reading another perl script into array and want to commands from
> the the array as if normal perl commands. How do I do it?

If you want to execute the perl commands in the other script, don't read
them into an array; just do() the script:

   do './myscript.pl';

perldoc -f do

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to