in reply to Multiple Daemons - same script?
Essentially, it could be reolved with multiple forks, as in following (speudo) code:
if (fork) { exec "daemon1" } if (fork) { exec "daemon2" } [download]
Paul