1 Star 0 Fork 1

卢俊北/安企CMS内容管理系统-AnqiCMS-原GoBlog个人博客

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stop.sh 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sinclair 提交于 2022-06-08 22:52 . 发布 anqicms
#!/bin/bash
### stop
# author fesion
# the bin name is anqicms
BINNAME=anqicms
BINPATH="$( cd "$( dirname "$0" )" && pwd )"
# check the pid if exists
exists=`ps -ef | grep '\<anqicms\>' |grep -v grep |awk '{printf $2}'`
echo "$(date +'%Y%m%d %H:%M:%S') $BINNAME PID check: $exists" >> $BINPATH/check.log
echo "PID $BINNAME check: $exists"
if [ $exists -eq 0 ]; then
echo "$BINNAME NOT running"
else
echo "$BINNAME is running"
kill -9 $exists
echo "$BINNAME is stop"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/SnakeOfEternal/goblog.git
[email protected]:SnakeOfEternal/goblog.git
SnakeOfEternal
goblog
安企CMS内容管理系统-AnqiCMS-原GoBlog个人博客
master

搜索帮助