Help for this page

Select Code to Download


  1. or download this
    sub io_read {
        local $SIG{__WARN__} = sub { }; # Silence warning.
        open my $pipe, '|-', @_ or die "Cannot exec $_[0]: $!\n";
        return $pipe;
    }
    
  2. or download this
    sub io_read {
        IO::Pipe->reader(@_);
    }