name=`whoami`
for i in `ps -ef | grep "^$name" | grep $1 |grep -v grep |awk '{print $2}'`
do
	kill -9 $i
done
