1
0
bot/test/cron.zsh

8 lines
108 B
Bash
Raw Normal View History

2023-10-20 14:31:16 +00:00
function cron() {
t=`docker ps |grep aios|grep Up`
if [ -z "$t" ];then
docker compose up -d
fi
exit
}