ps -aux | grep listen.pl | while read a b c
do
echo "Killing $a	$b	$c"
kill -9 $b
done

