UNIX 中子进程的 nohup

发布于 2024-09-17 09:57:05 字数 261 浏览 23 评论 0原文

如果我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末的微笑 2024-09-24 09:57:05

根据 man fork 子级的信号处理程序是从父级继承的,所以您的问题的答案是

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文