show/hide this revision's text 3 added 59 characters in body

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.

  1. backticks: $retVal = `perl somePerlScript.pl `;
  2. system() call
  3. 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'

show/hide this revision's text 2 added 15 characters in body

I can think of three ways to do this. You already mentioned the first two, so I won't go into detail on them.

  1. backticks: $retVal = `perl somePerlScript.pl `;
  2. system() call
  3. 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;
show/hide this revision's text 1

I can think of three ways to do this. You already mentioned the first two, so I won't go into detail on them.

  1. backticks: perl somePerlScript.pl;
  2. system() call
  3. 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;