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`;
[download]
will capture whatever foo printed to stdout in the variable $stuff. Alternatively, you can get more complicated output filtering with
Filter::Handle
.
Comment on
(RhetTbull) Re: stdout question
Download
Code
In Section
Seekers of Perl Wisdom