in reply to Re: running perl scripts from other perl scripts.
in thread running perl scripts from other perl scripts.
If the original poster wants to include Win9x in their definition of Win32, then the methods you link to won't work for them.
The most portable way I know to do this is:
- tye (but my friends call me "Tye")use IPC::Open3; my $pid= open3( "<&STDIN", *OUT, *OUT, "command" ); my @errors= <OUT>; close OUT; my $status= waitpid $pid, 0;
|
|---|