1 Star 0 Fork 5

WeBank / WeIdentity-Sample

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stop.sh 259 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanggang 提交于 2019-07-22 10:46 . fix md and script
#!/bin/bash
sample_pid=
getPid() {
sample_pid=`ps aux|grep "SampleApp" | grep -v grep|awk '{print $2}'|head -1`
}
getPid;
if [ -n "$sample_pid" ];then
kill -9 $sample_pid
echo "the server stop success."
else
echo "the server already stop."
fi
1
https://gitee.com/WeBank/WeIdentity-Sample.git
git@gitee.com:WeBank/WeIdentity-Sample.git
WeBank
WeIdentity-Sample
WeIdentity-Sample
master

搜索帮助