Help for this page

Select Code to Download


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