📜  查找并杀死进程 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:50.281000             🧑  作者: Mango

代码示例3
Find PID of process to kill with:
ps ax
Then just specify "kill PID" command as for example:
kill 16320
kill -9 16320     #Force kill in case process is not answering.