最近做项目,需要写脚本,根据某一个process id kill 掉该进程以及其下的所有子进程。 代码如下: pstree pid -p| awk -F"[()]" '{print $2}'| xargs kill -9