in reply to system() - launch a program and return without waiting in Windows

BrowserUK has answered your question, but I'll mention an alternative idea. It's pretty inefficient to shell out and then re-exec perl. Maybe it's possible to make abc.pl a module, then fork your process and call that module from perl?

  • Comment on Re: system() - launch a program and return without waiting in Windows

Replies are listed 'Best First'.
Re^2: system() - launch a program and return without waiting in Windows
by bingos (Vicar) on Dec 14, 2006 at 20:00 UTC

    Or use Win32::Process