The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Chj::IO::PipelessCommand

SYNOPSIS

 use Chj::IO::PipelessCommand;
 use Chj::xopen qw(xopen_read);
 use Chj::xtmpfile;

 my $in= xopen_read $inpath;
 my $out= xtmpfile $outpath;
 my $c= Chj::IO::PipelessCommand
            ->new_with_in_out ($in,$out, $path, @args);
 # $c can't be read from or written to.
 $c->xxfinish;

DESCRIPTION