当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 2 Fork 0

潘潘/PHP定时任务
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.sh 765 Bytes
一键复制 编辑 原始数据 按行查看 历史
潘潘 提交于 2018-05-21 18:50 . '初始化项目'
#!/usr/bin/env bash
# author Page
# time 2018-05-16
# program : 判断进行是否存在,并重新启动
function check(){
echo $(date "+%Y-%m-%d %H:%M:%S")
count=`ps -ef |grep "ShelvesServer.php" |grep -v "grep" |wc -l`
if [ 0 == $count ];then
echo "程序已停止,重启……"
nohup php ShelvesServer.php &
count2=`ps -ef |grep "ShelvesServer.php" |grep -v "grep" |wc -l`
if [ 0 == $count2 ];then
echo "重启失败"
else
echo "重启成功"
fi
else
ps -ef | grep "ShelvesServer.php" | grep -v grep | grep -v sudo
echo "程序正在运行中……"
fi
}
check >> run.log
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/PagePanCN/php_timing_task.git
git@gitee.com:PagePanCN/php_timing_task.git
PagePanCN
php_timing_task
PHP定时任务
master

搜索帮助