bash – 在shell脚本中`kill -0 $pid`是什么?

前端之家收集整理的这篇文章主要介绍了bash – 在shell脚本中`kill -0 $pid`是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
基本上,什么信号’0’表示,因为 here我看到SIGNAL数字从1开始。
发送信号0到给定的PID只是检查是否有给定PID的任何进程正在运行,并且您有权向其发送信号。

有关详细信息,请参阅以下联机帮助页:

杀死(1)

$ man 1 kill
...
If sig is 0,then no signal is sent,but error checking is still performed.
...

杀死(2)

$ man 2 kill
...
If sig is 0,but error checking is still performed; this 
can be used to check for the existence of a process ID or process group ID.
...
原文链接:https://www.f2er.com/bash/392559.html

猜你在找的Bash相关文章