I can think of three a few ways to do this. You already mentioned the first two, so I won't go into detail on them.
- backticks: $retVal =
`perl somePerlScript.pl`; - system() call
- eval
The eval can be accomplished by slurping the other file into a string (or a list of strings), then 'eval'ing the strings. Heres a sample:
#!/usr/bin/perl
open PERLFILE, "<somePerlScript.pl";
undef $/; # this allows me to slurp the file, ignoring newlines
my $program = <PERLFILE>;
eval $program;
4 . do:
do 'somePerlScript.pl'
