1 Star 1 Fork 10

root / WeIdentity-Build-Tools

forked from WeBank / WeIdentity-Build-Tools 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
stop.sh 580 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanggang 提交于 2020-07-13 18:56 . * fixed the comments
#!/bin/bash
buildTool_pid=
getPid() {
buildTool_pid=`ps aux|grep "BuildToolApplication" | grep -v grep|awk '{print $2}'|head -1`
}
getPid;
if [ -n "$buildTool_pid" ];then
kill -9 $buildTool_pid
echo "-----------------------------------------------"
echo "The weid-build-tools web server stopped successfully."
echo "-----------------------------------------------"
else
echo "-----------------------------------------------"
echo "The weid-build-tools web server already stopped successfully."
echo "-----------------------------------------------"
fi
Java
1
https://gitee.com/sinlosb/WeIdentity-Build-Tools.git
git@gitee.com:sinlosb/WeIdentity-Build-Tools.git
sinlosb
WeIdentity-Build-Tools
WeIdentity-Build-Tools
master

搜索帮助