I want to execute an executable from within a perl script, and have that executable continue to run in the background...even if my own process dies. In UNIX, I think this is done, for example, like this:
Any good ideas on how to do this from within perl? The main goal is to get a solution that is portable to several different platforms...if that's possible. So, backticking or system call may not be the best solution, I'm thinking.
Thanks in advance!!!
Code:
$ nohup exe &
Thanks in advance!!!