1
13693261870
2024-12-06 e886aadfe1d9b2eca35cc3f57c9ef1d2c580b538
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
RUN_NAME="wgcloud-server-release.jar"
export LANG="en_US.UTF-8"
PRG=$0
APPDIRFILE=`dirname "$PRG"`
echo $APPDIRFILE/$RUN_NAME
PID=`ps -ef|grep $RUN_NAME|grep -v grep|awk '{printf $2}'`
echo $PID
if [ ! -n "$PID" ];
then
   echo "wgcloud-server程序未启动"
else
   echo "已杀掉进程"
   echo $PID
   kill -9 $PID
fi