I would like to call an external perl script from within a loop, passing it one argument and then continue with the loop without waiting for the external script to return. I don't need to capture anything from the external script as it records it's actions in a separate log file. I think from having researched it that I may need to fork, but I've not used fork in the past and have to admit I don't really understand what I have been reading.
Basically the first script is parsing html files and building a url for the file from meta data containing the path and file name. The loop may process quite a few files. The second script takes a single url as an argument and builds a form submission with lwp and passes that url and some other arguments to a remote asp. So, I want to be able to fire this off multiple times from within the loop without any pause in the processing waiting for results from the external script. Can someone point me in the right direction?
Thanks.
Derek
Basically the first script is parsing html files and building a url for the file from meta data containing the path and file name. The loop may process quite a few files. The second script takes a single url as an argument and builds a form submission with lwp and passes that url and some other arguments to a remote asp. So, I want to be able to fire this off multiple times from within the loop without any pause in the processing waiting for results from the external script. Can someone point me in the right direction?
Thanks.
Derek