#!/bin/bash
for proc
	do
		pidlist=`ps | grep $proc | cut -f2 -d " "`
		
		for pid in $pidlist
			do
				kill -9 $pid
			done
	done	
