in reply to Execute with No wait

Open the command to a pipe. This should return immediatly and will allow you to retrieve the output at your convenience.
open PIPE, "$command |" or die "Failed to execute '$command'\n$!";
Then later, if you want, you can read from PIPE.