Cron Job仅限特定月份

时间:2015-12-04 10:10:45

标签: cron crontab cron-task cronexpression

我想设置一个cron任务,每个月的第一天运行一个脚本,除了1月1日。我怎么能这样做?

我可以尝试这样的事情:0 0 1 2-12 *?

2 个答案:

答案 0 :(得分:7)

可能如下所示:

0 0 1 2,3,4,5,6,7,8,9,10,11,12 *

答案 1 :(得分:5)

Minutes [0-59]
|   Hours [0-23]
|   |   Days [1-31]
|   |   |   Months [1-12]
|   |   |   |   Days of the Week [Numeric, 0-6]
|   |   |   |   |
*   *   *   *   * home/path/to/command/the_command.sh

这可以帮助您识别用法。