in reply to Re: Problem with 'system' function in Windows Vista
in thread Problem with 'system' function in Windows Vista
system(1, ...) is a Windows extention to create a process that runs asynchronously. It's an alternative to fork+exec. Unlike fork, system(1, ...) is natively supported, so it's much more resilient.
|
---|
In Section
Seekers of Perl Wisdom