ipc-system-simple icon indicating copy to clipboard operation
ipc-system-simple copied to clipboard

Perl module to make running system commands and capturing errors as simple as possible.

Results 20 ipc-system-simple issues
Sort by recently updated
recently updated
newest added

The following program works fine on Linux, but fails on Win64 / Windows 7 x86-64 / Strawberry Perl 5.18.2: ``` perl use strict; use warnings; use IPC::System::Simple qw( capturex );...

windows
Closable?

I am getting the following failures when trying to install v. 1.26 with Strawberry Perl 5.30.1 on Windows 10: http://www.cpan.org/authors/id/J/JK/JKEENAN/IPC-System-Simple-1.26.tar.gz Test Summary Report ------------------- t/04_capture.t (Wstat: 1024 Tests: 12 Failed:...

windows
Closable?

_(This issue was originally reported on Jun 05 2009 by [email protected] as https://rt.cpan.org/Ticket/Display.html?id=46684. Transferring it to the current issue tracker.)_ Due to the way in which Perl internally handles the...

Pass a Perl script (fail_test.pl) through STDIN to each invocation of Perl within the t files. If Perl is called without arguments, it will execute this script and simply print...

In [RT 41149](https://rt.cpan.org/Ticket/Display.html?id=41149) in 2008, checks were added to ensure that no undefined value was passed as the "command" element in the list of arguments to publicly available methods. However,...

stalled

capturex will, if execution fails, call END{} blocks one too many times. Suggest adding this fix from http://stackoverflow.com/questions/4307482/how-do-i-disable-end-blocks-in-child-processes

I'm having problems with using system with metacharacters. I am trying to use system by passing in a single string including a file redirect, ">". I know the same code...

windows

I am using `autodie` which uses `IPC::System::Simple`. `IPC::System::Simple` appears to be completely broken on Windows. It adds `,` (comma) after each command line argument. This is because it does this:...

windows

See also https://github.com/pjf/ipc-system-simple/issues/10.

windows

Hi, it would be nice if IPC::System::Simple could be enhanced to respect Win32::SetChildShowWindow. Specifically, the following should have the same behaviour (excepting error handling): ``` perl #!wperl use Win32; Win32::SetChildShowWindow(0);...

windows