You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. FILTER=$1
  2. PID=`ps -ef | grep "name=$FILTER" | grep -v grep | awk '{print $2}'`
  3. PROC_PATH=`ps -ef | grep "name=$FILTER" | grep -v grep | awk '{print $8}'`
  4. echo "Stopping peer[$PID][$FILTER] ......"
  5. kill -9 $PID
  6. echo "Peer[$PID][$FILTER] stopped!"