仅特定月份的 Cron Job

Cron Job only specific months

我想在除 1 月 1 日外的每个月的第一天为脚本设置一个 cron 任务 运行。我该怎么做?

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

它可以像下面这样:

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

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

这对您识别用法很有用。