Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建一个 cron 条目,它将在周一至周五上午 11:30 和下午 4:00 启动命令。无论如何要在一个条目中执行此操作,还是我需要使用两个?
这对于任何有特定时间来运行他们的工作的人来说都是很棒的,而他们的工作时间不会落在它运行的同一分钟。
目前我只能想象如下两线系统,这是唯一的方法吗?
# 30 11 * * 1-5 /cmd1
# 00 16 * * 1-5 /cmd1
不可能仅将其组合在一行上。
你建议做什么:
30 11,16 * * 1-5 /cmd1
甚至会在 16.30 执行。
然后,唯一的方法是像你已经拥有的那样分成两部分:
30 11 * * 1-5 /cmd1 00 16 * * 1-5 /cmd1
你可以试试这个:
如果您接受将第二个命令的时间更改为 16:30。