#!/bin/sh
#杀死进程
if [ -e pid ]
then
p=`cat pid`
kill -9 $p
if [ $? -eq 0 ]
echo "成功杀死进程:$p"
rm -f pid
fi
./run.sh