- or download this
use File::Temp qw(tempfile);
...
select($saved_fh);
$text = join '', <$temp_fh>;
print "The text was '$text'\n";
- or download this
use File::Temp;
use Carp;
...
seek($temp_fh, 0, 0);
wantarray ? <$temp_fh>: join '', $temp_fh;
}
- or download this
my $output = eval_print_trap("print 'Waka waka!'");