Process
為什麼“kill -9 0”會結束我的控制台會話?
我只是想知道為什麼
kill -9 0
結束我的 tty 控制台會話?PID 0 到底是什麼,它沒有列在
ps aux
?
kill
ing 0 不會殺死 pid 0。相反,它是kill
殺死目前組中所有程序的一個選項。使用您的命令,您正在殺死發出該kill
命令的 shell 的程序組 ID (GID) 中的所有內容。從
kill
手冊頁:pid... Specify the list of processes that kill should signal. Each pid can be one of five things: ... 0 All processes in the current process group are signaled.