in reply to autodie and IPC::System::Simple on Windows

This works for Windows 7,64 bit, ActiveState Perl v5.14.2 :

use IPC::System::Simple qw(capture capturex system systemx run runx $E +XITVAL EXIT_ANY); # This works. system('dir test.pl');

Replies are listed 'Best First'.
Re^2: autodie and IPC::System::Simple on Windows
by JohnRS (Scribe) on Jun 02, 2012 at 18:06 UTC

    Same here. Very interesting. As long as I feed it the command and argument as one string, rather than two, it works. Thanks!