Help for this page

Select Code to Download


  1. or download this
    binmode $fh;
    read($fh, my $buf, 20000);
    
  2. or download this
    binmode $fh;
    local $/ = \20000;
    my $buf = <$fh>;
    
  3. or download this
    binmode $fh;
    my $file = '';
    1 while read($fh, $file, 8*1024, length($file));
    
  4. or download this
    binmode $fh;
    local $/;
    my $file = <$fh>;