All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shell.stop.sh Maven / Gradle / Ivy

#!/bin/sh
#
# Copyright (c) 2017-2018 灵依科技
#

tpid=`cat /var/run/mqtt_api.pid | awk '{print $1}'`  
tpid=`ps -aef | grep $tpid | awk '{print $2}' |grep $tpid`  
if [ ${tpid} ]; then  
        kill -9 $tpid
        echo "系统已经停止!"
else
	echo "应用不存在或者没有运行!"
fi




© 2015 - 2024 Weber Informatics LLC | Privacy Policy