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.