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...
SHAY/perl-5.32.1 - 23 Jan 2021 14:56:24 UTCExtremely 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...
XSAWYERX/perl-5.32.0 - 20 Jun 2020 20:38:54 UTCThe goals of this module are: 1 Encapsulate logic done every time you want to use open3(). 2 boolean check of command execution 3 Out of the box printing to STDOUT/STDERR or assignments to variables (see #5) 4 open3() error reporting 5 comprehensive ...
DMUEY/IPC-Open3-Utils-0.92 - 22 Oct 2020 20:52:32 UTCIPC::Open3::Simple aims at making it very easy to start a shell command, eventually feed its stdin with some data, then retrieve its stdout and stderr separately. When you want to run a shell command and parse its stdout/stderr or feed its stdin, you...
ERWAN/IPC-Open3-Simple-0.04 - 20 Jul 2006 13:32:15 UTCThis module feeds output and error stream from a command to supplied callbacks. Thus, this class removes the necessity of dealing with IO::Select by hand and also provides a workaround for the bad reputation associated with Microsoft Windows' IPC....
LTHEISEN/IPC-Open3-Callback-1.19 - 06 Feb 2016 15:30:49 UTCThis provides a very basic logger for when Log4perl is not available....
LTHEISEN/IPC-Open3-Callback-1.19 - 06 Feb 2016 15:30:49 UTCThe subroutines exported by this module can build shell command strings that can be executed by IPC::Open3::Callback, IPC::Open3::Callback::CommandRunner, ``, system(), or even plain old open 1, 2, or 3. There is not much point to *shelling* out for ...
LTHEISEN/IPC-Open3-Callback-1.19 - 06 Feb 2016 15:30:49 UTCAdds more convenience to IPC::Open3::Callback by buffering output and error if needed and dieing on failure if wanted....
LTHEISEN/IPC-Open3-Callback-1.19 - 06 Feb 2016 15:30:49 UTCThis provides a container for information obtained when a command fails. The "command" and "exit_status" will always be available, but "out" and "err" will only be present if you supply the command option "out_buffer => 1" and "err_buffer => 1" respe...
LTHEISEN/IPC-Open3-Callback-1.19 - 06 Feb 2016 15:30:49 UTCIPC::RunExternal is for executing external operating system programs more conveniently than with `` or "system()", and without all the hassle of IPC::Open3. IPC::RunExternal allows: 1) Capture stdout and stderr in scalar variables. 2) Capture both st...
MIKKOI/IPC-RunExternal-0.101 - 06 Jul 2019 00:31:47 UTCIPC::Cmd allows you to run commands platform independently, interactively if desired, but have them still work. The "can_run" function can tell you if a certain binary is installed and if so where, whereas the "run" function can actually execute any ...
BINGOS/IPC-Cmd-1.04 - 13 Jul 2019 09:17:39 UTCThis 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 UTCIPC::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-20200505.0 - 05 May 2020 20:57:23 UTCThis 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 UTCThe 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...
XSAWYERX/perl-5.32.0 - 20 Jun 2020 20:38:54 UTCThe 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...
SHAY/perl-5.32.1 - 23 Jan 2021 14:56:24 UTCTHIS 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 UTCThis module encapsulates the open3() function call (see IPC::Open3) and its associated filehandles. This makes it easy to maintain multiple interactive command sessions, such as multiple persistent 'ssh' and/or 'rsh' sessions, within the same perl sc...
STEVEGT/IPC-Session-0.05 - 16 Apr 2001 06:26:27 UTCIPC::Capture is a module for running external applications in a portable fashion when you're primarily interested in capturing the returned output. Essentially this is an attempt at creating a portable way of doing "backticks" with io-redirection. In...
DOOM/IPC-Capture-0.06 - 16 Mar 2009 06:36:58 UTCIPC::Pipeline exports a single function "pipeline()". Similar in calling convention to IPC::Open3, "pipeline()" spawns N children, connecting the first child to the $first_child_in handle, the final child to $last_child_out, and each child to a share...
XAN/IPC-Pipeline-1.0 - 12 Sep 2014 22:19:09 UTC