Help for this page

Select Code to Download


  1. or download this
    binmode($fh);  # Or open with :raw
    
    ...
    }
    
    die("Premature EOF") if length($buf);
    
  2. or download this
    binmode($fh_in);   # Or open with :raw
    binmode($fh_out);  # Or open with :raw
    ...
    
       print($fh_out $buf);
    }