1 Star 0 Fork 94

yebetter/GoFound

forked from 武松/GoFound 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gofound.sh 390 Bytes
一键复制 编辑 原始数据 按行查看 历史
ep1088 提交于 2022-08-22 10:32 . sh
#!/bin/bash
#每分钟检测gofound运行
#*/1 * * * * /data/gofound/gofound.sh > /dev/null 2>&1
#每3点 重启gofound
#0 3 * * * /etc/init.d/gofound.d restart
count=`ps -fe |grep "gofound"|grep "config.yaml" -c`
echo $count
if [ $count -lt 1 ]; then
echo "restart"
echo $(date +%Y-%m-%d_%H:%M:%S) >/data/gofound/restart.log
/etc/init.d/gofound.d restart
else
echo "is running"
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/yebetter/gofound.git
[email protected]:yebetter/gofound.git
yebetter
gofound
GoFound
main

搜索帮助