简单的shell脚本

小污龟 563 2023-05-23

##定时任务执行脚本

* * * * * /var/spool/cron/crontab.sh

##脚本名称

crontab.sh
#!/bin/bash

step=2 #间隔的秒数,不能大于60

for (( i = 0; i < 60; i=(i+step) )); do

  #执行命令
  cd /home/wwwroot/yunyetong/ && php think OrderHandle hand;

  sleep $step

done

exit 0