This may not be a Perl question, but a Windows question. I suspect you want to do this: "start <options> <script>".
For instance:
my $cmd = "perl -w otherscript.pl";
my $result = system( "start /LOW $cmd" );
This should launch the desired command in a new window and return immediately. Enter start /?for other parameters that can change the new priority of the script, hide the next window or run in the current window.
source
share