http://qs321.pair.com?node_id=314324


in reply to execute a perl program

You could run it as a seperate process
system("perl other.pl");
or
$out = `perl other.pl`;
or you could just require the script and it will execute it. I would go with this option.
require 'other.pl';

- Tom