嵌套两个 crontab 上下文如何工作?

How does nesting two crontab Contexts work?

是否可以像这样嵌套两个 crontab 上下文?

create context Nest 
context A start (0, *, *, *, 1) end (0, *, *, *, 6),
context B start (0, 8, *, *, *) end (0, 22, *, *, *)

第一个上下文决定第二个上下文吗?

如果是这样,我假设,A 应该是第一个,因为它决定了日期,而第二个将在第一个上下文中的日期内存在。

是的,你是对的。 "A" 上下文控制 "B" 上下文。 "B" 上下文仅在 A 存在时存在。