You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
# 执行文件名称
|
|
app_name="zyplayer-doc"
|
|
|
|
pid=$(ps -ef | grep $app_name.jar | grep -v grep | awk '{print $2}')
|
|
if [ -n "$pid" ]; then
|
|
echo "stop $app_name.jar, pid:$pid"
|
|
kill -9 "$pid"
|
|
fi
|