in reply to how to store the output of a 'system' call to a variable

rsennat,
It sounds like you want to use backticks or qx.
my $result = `./script.pl`;
If on the other hand, you actually want to be using the STDOUT of the script - then see answer above.

Cheers - L~R