If I nohuped a parent process in unix, will the spawned child processes have the same protection as their parent?.

Suppose,

nohup par-process.sh &

and if par-process.sh contains the call to child as,

par-child.sh

will par-child be nohuped or should I do that explicitly for it?

Thanks in advance.

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

According to man fork child's signal handlers are inherited from parent, so answer to your question is yes.

link|improve this answer
You also have to read the exec() man page but in this case it works. – Joshua Aug 30 '10 at 17:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.