I have a perl script (Tk gui actually) that I want to launch multiple commands in parallel. Right now I am using
fork and exec but it does not return until ALL exec are completed. I would like it to return after each exec so that it can uncheck a checkbox (and the user can see that it is progressing)....