有时候我们写个脚本,跑起来的时候ctrl+c中断不了,这个时候我们需要根据进程号,杀掉这个进程。

#!bin/bash
kill `ps xf |grep $1 |grep -v "grep" |awk '{print $1}'`