in reply to RE: Re: sending arguements to external program
in thread sending arguements to external program
Again, see perlipc for more examples and alternatives.# in parent open(CHILD, "|other_program arg1 arg2") or die "other: $!"; print CHILD $large_amount_of_data; close(CHILD); # in child local $/; $large_amount_of_data = <STDIN>;
|
|---|