in reply to calling a perl script from within another perl script

doFILE; executes the Perl script as though it were actually a part of your currently running script. You might be looking to execute it using system() or the backticks instead. Or even open a pipe to it. See system, perlop (the section about the backtick operators), open for more details.


Dave

Replies are listed 'Best First'.
Re^2: calling a perl script from within another perl script
by nuttervm (Initiate) on Jul 16, 2004 at 16:33 UTC
    I had tried using backticks before and couldn't get that working for some reason. I just tried using the system() call and that worked just fine. Thanks for your help. Matt