in reply to Infinte perl script - Part 2
use POSIX qw(setsid); if (fork()) { exit; } else { setsid; } rest of your code here... [download]