Help for this page

Select Code to Download


  1. or download this
      use IO::Select;
      use IO::Socket;
      use IO::Handle;
      use IPC::Open3;
    
  2. or download this
      $Pin  = new IO::Handle;       $Pin->fdopen(10, "w");
      $Pout = new IO::Handle;       $Pout->fdopen(11, "r");
      $Perr = new IO::Handle;       $Perr->fdopen(12, "r");
      $Proc = open3($Pin, $Pout, $Perr, $cmdline);
    
  3. or download this
      $select->add($Pin);
      $select->add($Pout);
      $select->add($Perr);