Help for this page

Select Code to Download


  1. or download this
      while ( <$fh> ) {
          print OUTPUT $_;
      }
    
  2. or download this
      while ( read( $fh, $buffer, BUFFER_SIZE ) ) {
          print OUTPUT $buffer;
      }