I ran into the same problem when scanning a large list
of ip addresses. The problem with just using fork() is
that you can kill the server with too many processes.
I used Parallel::ForkManager (from cpan).
Let's you specify how many simultaneous forks you want
to run, so as not to bork the server
Wouldn't the fork() command handle this?wjnorth <[EMAIL PROTECTED]> wrote:
Group,This will probably be an easy question. I have a script that takes a comma delimited string of IP addresses as an argument and then proceeds to nmap port scan each IP address. The problem is, I don't want to loop throu