- or download this
my $myresult = "";
while(<$mystdout>){
$myresult = "$myresult$_";
}
- or download this
my $myresult = "";
while(<$mystdout>){
$myresult .= $_;
}
- or download this
my $myresult = join '', <$mystdout>;
- or download this
local $/;
my $myresult = <$mystdout>;