Linux 常用命令 一、进程相关 1. 根据关键字查找正在运行的程序 ps aux | grep key 2. 根据关键字杀死进程 ps -ef | grep key | grep -v grep | awk ‘{print $2}’|xargs kill -9