特定时间间隔的Cron工作

时间:2015-05-26 10:59:38

标签: cron crontab ubuntu-14.04

我需要每天以20分钟的间隔在linux中运行一个cron作业。最重要的是,它必须在特定的第10,30和50分钟。 我想我需要运行3个cron作业:

10 * * * * /path_to_script
30 * * * * /path_to_script
50 * * * * /path_to_script

是否可以使用单个cron作业来满足此要求?

2 个答案:

答案 0 :(得分:3)

10,30,50 * * * * /path_to_script

10/20 * * * * /path_to_script

答案 1 :(得分:-1)

使用sleep(1200)时间分隔符

聚合所有脚本

#script

#!/bin/bash

./wayto/script1;
sleep(1200);
./wayto/script2;
sleep(1200)
./wayto/script3;

通过crontab -e

在cron中完成一份工作
10 * * * * /bin/bash /way/to/script