Search results for "module:IPC::Open2"
IPC::Open2 - open a process for both reading and writing using open2()
The open2() function runs the given command and connects $chld_out for reading and $chld_in for writing. It's what you think should work when you try my $pid = open(my $fh, "|cmd args|"); The $chld_in filehandle will have autoflush turned on. If $chl...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
IPC::Open2 - open a process for both reading and writing using open2()
The open2() function runs the given command and connects $chld_out for reading and $chld_in for writing. It's what you think should work when you try my $pid = open(my $fh, "|cmd args|"); The $chld_in filehandle will have autoflush turned on. If $chl...
PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC
IPC::Open2::Simple - The simplest way to read and write to a fork
IPC::Open2::Simple allows you to pipe data to a child process and read its ouput ("STDOUT"), all in one line! Contrary to IPC::Open2, you do not need to use file handles to communicate with the child process, which makes things a lot easier. WARNING ...
ODC/IPC-Open2-Simple-0.01 - 20 Aug 2014 13:02:17 UTC
IPC::Exe - Execute processes or Perl subroutines & string them via IPC. Think shell pipes.
This module was written to provide a secure and highly flexible way to execute external programs with an intuitive syntax. In addition, more info is returned with each string of executions, such as the list of PIDs and $? of the last external pipe pr...
GLAI/IPC-Exe-2.002001 - 14 Nov 2011 08:22:35 UTC
IPC::Run - system() and background procs w/ piping, redirs, ptys (Unix, Win32)
IPC::Run allows you to run and interact with child processes using files, pipes, and pseudo-ttys. Both system()-style and scripted usages are supported and may be mixed. Likewise, functional and OO API styles are both supported and may be mixed. Vari...
TODDR/IPC-Run-20231003.0 - 03 Oct 2023 01:09:01 UTC
IPC::Run3 - run a subprocess with input/ouput redirection
This module allows you to run a subprocess and redirect stdin, stdout, and/or stderr to files and perl data structures. It aims to satisfy 99% of the need for using "system", "qx", and "open3" with a simple, extremely Perlish API. Speed, simplicity, ...
RJBS/IPC-Run3-0.048 - 29 Mar 2014 15:59:52 UTC
IPC::Open3 - open a process for reading, writing, and error handling using open3()
Extremely similar to open2(), open3() spawns the given command and connects $chld_out for reading from the child, $chld_in for writing to the child, and $chld_err for errors. If $chld_err is false, or the same file descriptor as $chld_out, then STDOU...
PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC
IPC::Open3 - open a process for reading, writing, and error handling using open3()
Extremely similar to open2(), open3() spawns the given command and connects $chld_out for reading from the child, $chld_in for writing to the child, and $chld_err for errors. If $chld_err is false, or the same file descriptor as $chld_out, then STDOU...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
IPC::Filter - filter data through an external process
The "filter" function provided by this module passes data through an external command, thus providing filtering in non-pipeline situations....
ZEFRAM/IPC-Filter-0.005 - 12 Aug 2017 00:03:53 UTC
IPC::OpenAny - Run a process with control over any FDs it may use.
THIS SOFTWARE IS STILL UNDER DEVELOPMENT PLEASE REPORT ANY BUGS, COMMENTS, OR FEATURE REQUESTS In the spirit of IPC::Open2 and IPC::Open3, which give you 2 and 3 handles to a child process, IPC::OpenAny makes it easy to start a process with any file ...
SSCAFFIDI/IPC-OpenAny-0.005 - 02 Jun 2012 00:18:12 UTC