从一个shell脚本执行多个shell脚本时如何保存PID?

发布于 2025-01-11 09:05:50 字数 314 浏览 0 评论 0原文

假设我有 3 个 shell 脚本 First.shSecond.shThird.sh 。然后我创建了

Forth.sh ,其内容为

nohup sh First.sh &
nohup sh Second.sh &
nohup sh Third.sh &

当我运行 nohup sh Forth.sh 时如何保存每个 nohup 命令创建的 PID?

谢谢你的时间

Lets say I have 3 shell scripts First.sh , Second.sh and Third.sh. Then I created

Forth.sh with the content

nohup sh First.sh &
nohup sh Second.sh &
nohup sh Third.sh &

How to save PID created by each of the nohup command when I run nohup sh Forth.sh ?

thanks for you time ????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

各自安好 2025-01-18 09:05:50

在发出 nohup 后立即尝试 $!。它应该返回子进程 pid。每次你 fork 一个子进程时它都会被覆盖。

或者,您可以从子进程中保存 $$ (例如 First.sh、Second.sh ...)

nohup sh First.sh &
FIRST_PID=$!
nohup sh Second.sh &
SECOND_PID=$!
nohup sh Third.sh &
THIRD_PID=$!

Try $! right after you issue the nohup. It should return the child-pid. It will be overwritten every time you fork a child process.

Alternatively, you could save $$ from the child process (e.g. First.sh, Second.sh ...)

nohup sh First.sh &
FIRST_PID=$!
nohup sh Second.sh &
SECOND_PID=$!
nohup sh Third.sh &
THIRD_PID=$!

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