- or download this
use strict;
...
# To check for errors
print "$script_exe\n";
- or download this
my $script_exe = `perl perl_script_to_run input output`;
- or download this
my $cmd = "perl script_to_execute input output";
print STDERR "$cmd\n";
system($cmd);