in reply to To run win command with perl with no wait for process to complete and perl to continue furher

Yes, you need to use system, via Proc::Background
  • Comment on Re: To run win command with perl with no wait for process to complete and perl to continue furher

Replies are listed 'Best First'.
Re^2: To run win command with perl with no wait for process to complete and perl to continue furher
by Selva123 (Novice) on Nov 09, 2011 at 07:19 UTC
    Thanks and this is working and I could able to track the same later with Alive and die to kill after some time it exists.

    Here I have a question. Do you have any equivalent to work on perl in win 64 bit box?

Re^2: To run win command with perl with no wait for process to complete and perl to continue furher
by Anonymous Monk on Nov 08, 2011 at 09:33 UTC
    why not just use system("$cmd &") ? you can make that safer by calling it like so: system("/bin/sh", "-c", "$cmd &").
      ignore my suggestion- skipped over the windows requirement