in reply to How can I source other perl scripts from within a Perl script

If you want to run an external command (including another Perl script), then qx//, system, exec or fork may be what you want.

If, however, you want to make use of variables and functions defined in another file, then you might find use, require or do are more interesting.</> --
<http://www.dave.org.uk>

"Perl makes the fun jobs fun
and the boring jobs bearable" - me

  • Comment on Re: How can I source other perl scripts from within a Perl script