1 Star 0 Fork 4

大熊的学习仓库/snippets

forked from imjcw/snippets 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
JobLauncher.sh 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
imjcw 提交于 2021-02-16 19:00 . add JobLauncher.sh.
#!/usr/bin/env bash
# nohup bash JobLauncher.sh sth --infinity --sleep=1m > /dev/null 2>&1 &
ROOT_DIR=$(dirname `readlink -m $0`)
shStatusDir="$ROOT_DIR/cache/data"
shStatusFile="$shStatusDir/$$"
phpCommand="php $ROOT_DIR/tasks/cli.php"
infinity=0
isLoop=0
sleepTime="1m"
for((i=1;i<$#+1;i++));do
if [ "${!i}" = "--loop" ]; then
isLoop=1
continue
elif [ "${!i}" = "--infinity" ]; then
infinity=1
isLoop=1
continue
elif [ "${!i:0:8}" = "--sleep=" ]; then
sleepTime=`echo ${!i} | sed -e 's/--sleep=//'`
continue
fi
phpCommand="${phpCommand} ${!i}"
done
# 删除标志文件
if [ -f ${shStatusFile} ]; then
rm -f ${shStatusFile}
fi
if [ ${isLoop} -eq 0 ]; then
${phpCommand}
else
touch ${shStatusFile}
phpCommand="${phpCommand} --flag=${shStatusFile}"
while [ true ];do
${phpCommand}
EXEC_FLAG=`cat ${shStatusFile}`
if [ "${EXEC_FLAG}" = 'continue' ]; then
continue
fi
if [ "${EXEC_FLAG}" = 'sleep' -o "${EXEC_FLAG}" = '' ]; then
sleep ${sleepTime}
continue
fi
if [ ${infinity} -eq 0 -a "${EXEC_FLAG}" = "stop" ]; then
rm -f ${shStatusFile}
break
fi
sleep ${sleepTime}
done
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/feartist/snippets.git
git@gitee.com:feartist/snippets.git
feartist
snippets
snippets
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385