in reply to Re: IPC::Run and ACLs?
in thread IPC::Run and ACLs?

Many thanks, I was not aware of Capture::Tiny, I see there is also a Capture::Tiny::Extended. It's not immediately clear to me how I would use those while sending info to the STDIN of the script, will have to look at that...

The SEE ALSO section in Capture::Tiny is useful, I think I will check out IPC::Open3 and IPC::Open3::Simple since those handle all of STDIN, STDOUT and STDERR - hopefully they will not suffer from the same permissions problem as IPC::Run.

Replies are listed 'Best First'.
Re^3: IPC::Run and ACLs?
by kcott (Archbishop) on Apr 04, 2014 at 22:11 UTC
    "... Capture::Tiny ... not immediately clear to me how I would use those while sending info to the STDIN ..."

    Looking at other responses you've posted in this thread, I do see STDIN mentioned. I didn't notice that when I first replied: Capture::Tiny probably is unsuitable.

    IPC::Open3 is part of the core Perl distribution; if that turns out to suitable (ACL-wise), then there's no installation requirement.

    -- Ken