Help for this page

Select Code to Download


  1. or download this
    $old_handle = select (STDOUT);
    $| = 1;   # perform flush after each write to STDOUT
    select ($old_handle); # restore previously selected handle
    
  2. or download this
    
         $| = 1;
    ...
    
         $| = 0;