Todd Rinaldo
Todd Rinaldo
It would be helpful to have a example script or test for this.
IPC_run_test.pl ```perl #!/bin/env perl use IPC::Run qw( run timeout start harness finish pump); # IPC::Run version 0.91 use strict; use warnings; use IO::Pipe; my $write = IO::Handle->new();; my $read =...
I have no suggestion at this time because I can't reliably re-produce it.
foo.pl ```perl #!/usr/bin/perl -w use strict; use warnings; use IPC::Run; use Data::Dumper; my @x; $#x = 100e6 / 4; print scalar(@x),"\n"; my $pid = fork(); print Data::Dumper->new([\$pid],['pid'])->Dump; my $out; IPC::Run::run...
I ran foo.pl and got: ``` $>perl foo.pl 25000001 $pid = \9867; $pid = \0; hello done hello done
foo.pl: ```perl use strict; use IPC::Run; my $harness = IPC::Run::start(['wc'], '
I'm all for this but it's an enhancement and I'm not actively developing on IPC::Run at this time. Patches welcome.
I'm open to patches but not actively developing myself on the module at this time
This seems to be a request for a documentation fix. I assume we need to clarify that this is a truthy response rather than 0/1. If this is not the...
That's correct. Several cases have asked about this. I'm going to put something in now.