I found in a script a call to kill -0 <pid>
.
It looks like a way to check if process exists.
I don't know the exact meaning of kill -0
so I looked for its
definition but I didn't find any information.
man signal
, on many different flavour of unix, don't mention a signal 0.
kill -l 0
returns a T (that should be a SIGT).
So what is the meaning of kill 0 <pid>
?