#!/bin/bash
key=s11
pid=$(ps -ef|grep socket|grep $key|grep -v grep |awk '{print $2}')
for p in $pid
do
    kill -9 $p
done
exit 0