in reply to Re: (4) Launch background perl script from CGI
in thread Launch background perl script from CGI
Will kick off a background process via Win32::Process, instead of relying on the shell to create a background process.use Proc::Background; my $proc = Proc::Background->new("C:\\Perl\\bin\\perl.exe generate_rep +ort.pl");
|
|---|