📜  ubuntu 获取进程的 pid - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:51:20.553000             🧑  作者: Mango
代码示例1
#to search for pid
ps ax | grep firefox
#and to kill it run
sudo kill -9 THE_PID_NUMBER