Skip Menu |

This queue is for tickets about the IPC-Run CPAN distribution.

Report information
The Basics
Id: 83000
Status: resolved
Priority: 0/
Queue: IPC-Run

People
Owner: Nobody in particular
Requestors: EDAVIS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.92
Fixed in: (no value)



Subject: Allow ordinary scalar for 'pipe'
In recent perl versions you can use an ordinary scalar in open(), as: open my $fh, '<', 'file' or die; You no longer have to use bareword filehandles or get involved with the details of taking glob references \*FH. It would be good if the 'pipe' mode of IPC::Run allowed the same convenience: my $child_out; start \@cmd, '<', '/dev/null', '>pipe', \$child_out, '2>', '/dev/null'; At the moment this gives 'Not a GLOB reference' from inside IPC::Run::IO.
Ticket migrated to github as https://github.com/toddr/IPC-Run/issues/50