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


in reply to stdout question

Depending on what you're trying to do, backticks may be what you're looking for. Executing something like:
my $stuff = `foo`;
will capture whatever foo printed to stdout in the variable $stuff. Alternatively, you can get more complicated output filtering with Filter::Handle.