UNIX 中子进程的 nohup
如果我在 unix 中 nohuped 父进程,那么生成的子进程是否具有与其父进程相同的保护?
假设,
nohup par-process.sh &
如果 par-process.sh 包含对 child as 的调用,
par-child.sh
par-child 是否会被 nohuped 或者我应该明确地这样做?
提前致谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据
man fork
子级的信号处理程序是从父级继承的,所以您的问题的答案是是。According to
man fork
child's signal handlers are inherited from parent, so answer to your question is yes.