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 作业,以便它们在每个星期一和星期四在 1800、1830、1900、1930、2000、2030、2100 运行。到目前为止,我已经设法做到了这一点:
00,30 18-21 * * 1,4
这是正确的做法吗?如果是,它也会在 21:30 运行吗?
您的 cronjob 也将在 21.30 运行。为了避免它,你最好把它分成两部分:
00,30 18-20 * * 1,4 # 1800, 1830, 1900, 1930, 2000, 2030 00 21 * * 1,4 # 2100