Help for this page

Select Code to Download


  1. or download this
    for (;;) {
       my $read = sysread($fh, my $buf, 64*1024);
    ...
       last if !$read;
       print $buf;
    }