linux 如何在cron表达式中跳过星期六和星期日?[关闭]

wz8daaqr  于 2023-05-16  发布在  Linux
关注(0)|答案(3)|浏览(465)

**关闭。**这个问题是not about programming or software development。目前不接受答复。

这个问题似乎不是关于a specific programming problem, a software algorithm, or software tools primarily used by programmers的。如果你认为这个问题与another Stack Exchange site的主题有关,你可以留下评论,解释在哪里可以回答这个问题。
昨天关门了。
Improve this question
嗨,我想创建一个cron表达式,不包括星期六和星期日。

axr492tv

axr492tv1#

0 0 * * 1,2,3,4,5 <user> <command>开始这一行。第一个字段是分钟和小时。在这种情况下,命令将在午夜运行。星星意味着:每个月的每一天,每个月的每一天。1到5指定天数。星期一到星期五。6=星期六0=星期日。

x4shl7ld

x4shl7ld2#

试试这个:

# run every two hours at the top of the hour Monday through Friday
0 */2 * * mon-fri <command>
qzlgjiam

qzlgjiam3#

简单来说,0代表星期日6星期六

  • */10 * * * 1-5 -从周一到周五每10分钟一次。
  • */10 * * * 0,6-周日和周六每隔10分钟。

相关问题