If you just want to run another Perl script and not have the existing Perl
script wait for it to return use "exec" instead of "system". Taken from the
Perl docs:
exec LIST
exec PROGRAM LIST
The exec function executes a system command and never returns-- use system
instead of exec if you want it
taguti wrote:
> Dear,
>
> My question is just how to execute another perl script asyncronously.
> system or `` waite until another script will terminated.
> I need a function like Win32::spawn by Dave Roth.
>
> Schedule-Cron in CPAN is somewhat like, but it is for Perl subroutines.
>From perl