in reply to How to run a shell script from a Perl program?

You can use backticks, if you want to capture the output of the spawned program:
@output = `some shell command`;

Originally posted as a Categorized Answer.