kill -0 does not kill the process. It just checks if you could send a signal to it.
Simply kill pid, and if that doesn’t work, try kill -9 pid.
kill -0 does not kill the process. It just checks if you could send a signal to it.
Simply kill pid, and if that doesn’t work, try kill -9 pid.