in reply to Multiple Daemons - same script?

What have you tried so far? Can you show us some sample code?

Essentially, it could be reolved with multiple forks, as in following (speudo) code:

if (fork) { exec "daemon1" } if (fork) { exec "daemon2" }

Paul