标签: cron
我需要每天在10、12、16和20个小时运行工作。 我知道我可以创建4个cron作业,如下所示:
0 10 * * * /path/to/execute/file 0 12 * * * /path/to/execute/file 0 16 * * * /path/to/execute/file 0 20 * * * /path/to/execute/file
我很好奇,可以将这项任务安排在单个cron任务中吗?
答案 0 :(得分:2)
可能:
0 10,12,16,20 * * * /path/to/execute/file
这是一个快速教程,可帮助您更好地使用cron