Linux获取pid

#!/bin/sh
pid=`ps -ef|grep 'renren' |grep -v grep|awk '{print $2}'`
echo '结束进程'
echo $pid
kill $pid
sleep 5s
echo '启动接口'
nohup java -jar renren-api.jar >nohup.out 2>&1 &
tail -f nohup.out

你可能感兴趣的:(Linux获取pid)