Help for this page

Select Code to Download


  1. or download this
    {
       open local *STDOUT, '>', \$buf;
       ...
    }
    
  2. or download this
    open TEMP, '>', \$buf;
    my $old_select = select(TEMP);
    ...
    select($old_select);
    
  3. or download this
    {
       my $old_select = select();
    ...
       select(STDOUT);
       ...
    }