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

Search results for "module:IPC::Cmd"

IPC::Cmd - finding and running system commands made easy River stage five • 127 direct dependents • 21420 total dependents

IPC::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 UTC

MooX::Ipc::Cmd - Moo role for issuing commands, with debug support, and signal handling River stage zero No dependents

CAZADOR/MooX-Ipc-Cmd-1.2.1 - 18 Nov 2016 18:26:32 UTC

IPC::Cmd::Cached - Run expensive commands and cache their output River stage zero No dependents

"IPC::Cmd::Cached" uses "IPC::Cmd" to run arbitrary shell commands, but caches their results and finds them later. It uses a "Cache::FileCache" object to store the output of commands it has successfully executed persistently on disk. Results are stor...

MSCHILLI/IPC-Cmd-Cached-0.01 - 18 Dec 2007 06:10:59 UTC

IPC::PrettyPipe::Cmd - A command in an IPC::PrettyPipe pipeline River stage zero No dependents

IPC::PrettyPipe::Cmd objects are containers for the individual commands in a pipeline created by IPC::PrettyPipe. A command may have one or more arguments, some of which are options consisting of a name and an optional value. Options traditionally ha...

DJERIUS/IPC-PrettyPipe-0.13 - 08 Jul 2020 21:29:42 UTC

Class::Usul::IPC::Cmd - Execute system commands River stage one • 3 direct dependents • 3 total dependents

Refactored IPC::Cmd with a consistent OO API Would have used MooseX::Daemonize but using Moo not Moose so robbed some code from there instead...

PJFL/Class-Usul-0.84.1 - 14 Apr 2018 12:28:18 UTC

MooX::Ipc::Cmd::Exception - Exception class for MooX::Ipc::Cmd role River stage zero No dependents

CAZADOR/MooX-Ipc-Cmd-1.2.1 - 18 Nov 2016 18:26:32 UTC

Archive::Tar::Wrapper::IPC::Cmd - Archive::Tar::Wrapper minus IPC::Run, IO::Pty River stage zero No dependents

Archive::Tar::Wrapper::IPC::Cmd is a fork of Michael Schilli's Archive::Tar::Wrapper Removed: IPC::Run, IO::Pty Added: IPC::Cmd...

BIESZCZAD/Archive-Tar-Wrapper-IPC-Cmd-0.22 - 12 Jul 2012 08:43:57 UTC

IPC::ShellCmd - Run a command with a given environment and capture output River stage zero No dependents

This module comes from the nth time I've had to implement a select loop and wanted appropriate sudo/su privilege magic, environment variables that are set in the child, working directories set etc. It aims to provide a reasonable interface for settin...

BOBTFISH/IPC-ShellCmd-0.001 - 09 Nov 2009 01:52:05 UTC

IPC::ShellCmd::SSH - Chain ssh-ing to a host before running the command River stage zero No dependents

IPC::ShellCmd::SSH->new(Host => *$host*, [*$opt* => *$val*, ...]) The only external method for this is the constructor. This sets up the various arguments that are going to be used to generate the command-line. Other methods on this are used by IPC::...

BOBTFISH/IPC-ShellCmd-0.001 - 09 Nov 2009 01:52:05 UTC

IPC::ShellCmd::Sudo - Chain sudo-ing to a different user before running the command River stage zero No dependents

IPC::ShellCmd::Sudo->new([*$opt* => *$val*, ...]) The only external method for this is the constructor. This sets up the various arguments that are going to be used to generate the command-line. Other methods on this are used by IPC::ShellCmd, but it...

BOBTFISH/IPC-ShellCmd-0.001 - 09 Nov 2009 01:52:05 UTC

IPC::ShellCmd::Generic - Chain a generic wrapper-type command River stage zero No dependents

IPC::ShellCmd::Generic->new(Prog => *$prog*, [*$opt* => *$val*, ...]) The only external method for this is the constructor. This sets up the various arguments that are going to be used to generate the command-line. Other methods on this are used by I...

BOBTFISH/IPC-ShellCmd-0.001 - 09 Nov 2009 01:52:05 UTC

IPC::ShellCmd::ShBase - Base class for shell commands River stage zero No dependents

Abstract base class for other IPC::ShellCmd command types....

BOBTFISH/IPC-ShellCmd-0.001 - 09 Nov 2009 01:52:05 UTC

Quiq::Ipc - Interprozesskommunikation River stage zero No dependents

FSEITZ/Quiq-1.215 - 28 Mar 2024 21:53:27 UTC

IPC::Run - system() and background procs w/ piping, redirs, ptys (Unix, Win32) River stage four • 157 direct dependents • 1806 total dependents

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/output redirection River stage four • 102 direct dependents • 4173 total dependents

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.049 - 20 Jan 2024 21:13:21 UTC

IPC::Exe - Execute processes or Perl subroutines & string them via IPC. Think shell pipes. River stage zero No dependents

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::Open2 - open a process for both reading and writing using open2() River stage five • 11292 direct dependents • 32664 total dependents

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() River stage five • 11292 direct dependents • 32664 total dependents

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::Open3 - open a process for reading, writing, and error handling using open3() River stage five • 11292 direct dependents • 32664 total dependents

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() River stage five • 11292 direct dependents • 32664 total dependents

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
42 results (0.049 seconds)