Help for this page

Select Code to Download


  1. or download this
    while ( <FOO> ) { $_ = substr($_, 0, 1024); # other stuff }
    
  2. or download this
    {
        local $/ = \1024;
    ...
    }
    # or
    sysread FOO, $_, 1024; # keeping track of offset