定时任务——指定时间区间内随机某个时间执行指定php文件

33 16 * * * echo 'sleep ' $(shuf -i 1-60 -n 1)';/usr/bin/php /www/wwwroot/test.php >>/tmp/test.txt' |at now + $(shuf -i 1-3 -n 1) min

脚本意思为:
每天下午16:33分之后的1-3分钟内随机某个时去执行test.php文件

你可能感兴趣的:(Linux,定时任务,php)