Linux Cron选项卡用于在不同时间运行的作业的表达式

时间:2021-02-25 01:08:54

I need to have a single cron tab entry configured for a scheduled job

我需要为计划作业配置一个cron选项卡条目

The job runs at

这份工作是在

0-4 hours and then 16-20 hours

0-4小时,然后16-20小时

I tried this

我试过这个

0 */0-4,9-23 * * * some_report.sh
*/15 0-4,9-23 * * * some_report.sh 

I checked this @ site http://cronchecker.net

我检查了这个@ site http://cronchecker.net

but its not the correct entry..

但它不是正确的条目..

How can i configure the cron expression for this job.

如何为此作业配置cron表达式。

1 个解决方案

#1


1  

0 0-4,16-20 * * * some_report.sh does exactly what you're asking.

0 0-4,16-20 * * * some_report.sh完全符合您的要求。

Also try crontab.guru for similar crontab questions.

还可以尝试使用crontab.guru来获取类似的crontab问题。

#1


1  

0 0-4,16-20 * * * some_report.sh does exactly what you're asking.

0 0-4,16-20 * * * some_report.sh完全符合您的要求。

Also try crontab.guru for similar crontab questions.

还可以尝试使用crontab.guru来获取类似的crontab问题。