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.
9 lines
172 B
Bash
9 lines
172 B
Bash
4 months ago
|
#!/bin/sh
|
||
|
APP_NAME=fuint-server
|
||
|
|
||
|
tpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
|
||
|
if [ ${tpid} ]; then
|
||
|
echo 'Kill Process!'
|
||
|
kill -9 $tpid
|
||
|
fi
|