gpt4 book ai didi

linux - 等待特定 pid 的最佳方法

转载 作者:太空宇宙 更新时间:2023-11-04 12:18:27 26 4
gpt4 key购买 nike

从另一个 shell 等待特定 pid 的最佳方法是什么(即没有循环)

实际上我使用这个解决方案(如果 root 是所有者则不起作用):

while kill -0 $pid > /dev/null 2>&1
do
echo "waiting $pid"
sleep 10
done

备选方案(不适用于僵尸进程)

while ps -p `cat $PID_FILE` > /dev/null 2>&1
do
echo "waiting $pid"
sleep 10;
done

最佳答案

通常,您会使用内置的 wait shell:

wait $pid

关于linux - 等待特定 pid 的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46731216/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com