in reply to Re^2: IPC::Cmd pipe array
in thread IPC::Cmd pipe array

My code is using IPC::Run, not IPC::Cmd. Your's is still using IPC::Cmd.

Replies are listed 'Best First'.
Re^4: IPC::Cmd pipe array
by ag4ve (Monk) on Oct 29, 2013 at 17:13 UTC
    Ah, you're right. I'll look at converting (will probably be good since there's more written about IPC::Run anyway). Thanks
Re^4: IPC::Cmd pipe array
by ag4ve (Monk) on Oct 31, 2013 at 15:53 UTC
    #!/usr/bin/env perl use strict; use warnings; use Data::Dumper; use IPC::Run qw/run/; use IPC::Run qw(run); my @in = ("Test foo", "Test bar"); run [echo => -n => @in] , '|', [ sed => "s/(foo|bar)/pass/" ], '>', \m +y $out; print "Redir: " . Dumper($out);

    OUT:

    % ./t2.pl Redir: $VAR1 = 'Test foo Test bar';