in reply to Re: spawning Perl scripts
in thread spawning Perl scripts
For Windows OS, I don't see a downside to:
$cmd = "start perlprog.pl > file.log"; system ($cmd);
This "system" command should return just after the process is started. One downside is that you will get another cmd window pop up.
|
|---|