Help for this page

Select Code to Download


  1. or download this
    use IO::Select;
    {
    ...
        return $&;
      }
    }
    
  2. or download this
    package TimeOutHandle;
    use Tie::Handle;
    ...
    open (INDATA, '-|') || do {slowdata();exit();};
    tie *TIMEOUT10, 'TimeOutHandle', \*INDATA, 10;
    reportlines(*TIMEOUT10);
    
  3. or download this
    Regular filehandle:
    19: __BEGIN__
    ...
    61: 'abc\n'
    63: 'de'
    63: __END__