1

在为我拥有的三个脚本设置 cron 计划时,我希望得到一些帮助。我需要安排第一个脚本在每个月的第一个星期二运行,第二个脚本在每个月的第二个星期二运行,第三个脚本在每个月的第三个星期二运行。这是我到目前为止所拥有的。

# Run first script on the 1st Tuesday of every month at 9:00 AM
0 9 1,2,3,4,5,6,7 * 2 wget -q -O /dev/null http://site.com/first-script

# Run second script on the 2nd Tuesday of every month at 9:00 AM
0 9 8,9,10,11,12,13,14 * 2 wget -q -O /dev/null http://site.com/second-script

# Run third script on the 3rd Tuesday of every month at 7:00 AM
0 7 15,16,17,18,19,20,21 * 2 wget -q -O /dev/null http://site.com/third-script

我相信这些脚本将在每个月的第一个、第二个和第三个星期二以及每个月的 1-21 日运行。看起来从我读到的星期几和天是一个 AND,是真的吗?

希望这可以通过 cron 实现,否则我将不得不改变是否在脚本本身内部运行脚本的决定。

4

4 回答 4

4

如果您不想将日期检查逻辑直接放入脚本中,则可以让 cron 作业shell 命令部分在执行脚本之前检查星期几。

# Run first script on the 1st Tuesday of every month at 9:00 AM
0  9  1-7    *  *  [ "$(date '+\%a')" = "Tue" ] && wget -q -O /dev/null http://example.com/first-script

# Run second script on the 2nd Tuesday of every month at 9:00 AM
0  9  8-14   *  *  [ "$(date '+\%a')" = "Tue" ] && wget -q -O /dev/null http://example.com/second-script

# Run third script on the 3rd Tuesday of every month at 7:00 AM
0  7  15-21  *  *  [ "$(date '+\%a')" = "Tue" ] && wget -q -O /dev/null http://example.com/third-script

如果[ $(date '+\%a')" = "Tue" ]条件成功,脚本将执行。% 符号必须用反斜杠转义,因为 cron 将 % 视为特殊字符。

因为一周有 7 天,所以每月的第一个星期二保证在 1-7 范围内,第二个在 8-14 范围内,第三个在 15-21 范围内。

要捕获第一个星期二,您不能这样做:

0  9  1-7  *  2 && wget -q -O /dev/null http://example.com/some-script

...因为1-7 (Day of Month) 和2 (Day of Week) 实际上是OR'd。由于某种原因,Cron 对这两个字段的处理方式与其他字段不同。在上面的示例中,您的脚本最终将在 1-7 范围内每天运行,并且每周二运行。

于 2017-07-25T13:36:36.063 回答
2

您可以将 cron 设置为:

00 09 1-7,8-14,15-21 * 2 /path/myscript

这将在第一个、第二个和第三个星期二的上午 9 点运行脚本。

于 2014-12-30T06:48:22.213 回答
1

他们是一个或。

它将在每个星期二列出的日期运行。

于 2013-11-26T09:12:05.350 回答
1

另一种方法是创建每周二运行的主脚本,验证周二是,那个小时相应地调用适当的辅助脚本。

0 7,9 * * 2 wget -q -O /dev/null http://site.com/main-script

我希望这会有所帮助。

问候。

于 2012-11-28T20:34:04.857 回答