in reply to Running a Perl script in the background from another Perl script
use Win32::Process; Win32::Process::Create($Win32::Process::Create::ProcessObj, 'c:/perl/bin/perl.exe', #path to perl 'perl script.pl', #perl script 0, DETACHED_PROCESS, ".")or die "$!";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Running a Perl script in the background from another Perl script
by jplindstrom (Monsignor) on Jul 10, 2001 at 23:05 UTC | |
|
Re: Re: Running a Perl script in the background from another Perl script
by mikeo (Initiate) on Jul 10, 2001 at 22:47 UTC |