Hello,
is there a way to start a program from perl but don't wait for it to complete.
`program`;
system("program");
exec("program");
All these wait for the "Program" called to complete, untill such time the perl script blocks, I dont want this to happen, i only want to start the program, even if it fails it is not a problem.