http://www.perlmonks.org?node_id=1021276


in reply to how to run non-waiting background process

Use:

system 1, 'theCommand';

I'm pretty sure that worked on 5.6.1; but it was a very long time ago.

If not, this will work:

system 'start /b theCommand';

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^2: how to run non-waiting background process
by Anonymous Monk on Mar 03, 2013 at 16:27 UTC