gpt4 book ai didi

linux - crontab (cronie),在每个月的特定几天运行

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:06:01 25 4
gpt4 key购买 nike

我想制作一个 crontab 条目,它将在每个工作日运行,除了每个月的 1 号、2 号和 3 号。这是我拥有的:

45   8,12,16 4-31 * 1-5  my_program

我认为这具有以下含义:

minutes:      45 past the hour
hours: 8, 12, and 16
day of month: 4th to 31st inclusive
month: all
day of week: Monday to Friday inclusive

这是我在 crontab(5) 手册页中读到的内容。但是,我可以看到该工作于今天 10 月 2 日星期一 08:45 运行。我确定 crontab 文件已正确加载(并且 crontab -l 显示了它);它最近没有改变。 date 显示的系统日期和时间也是正确的。

我缺少什么来确保我的 cron 作业只从 4 号开始运行?我正在使用 Fedora Linux:

% rpm -qf `which crontab`
cronie-1.5.0-3.fc23.x86_64
% rpm -q fedora-release
fedora-release-23-1.noarch

最佳答案

来自 crontab 手册:

Note: The day of a command's execution can be specified by two fields — day of month, and day of week. If both fields are restricted (i.e., aren't *), the command will be run when either field matches the current time. For example, ``30 4 1,15 * 5'' would cause a command to be run at 4:30 am on the 1st and 15th of each month, plus every Friday. One can, however, achieve the desired result by adding a test to the command (see the last example in EXAMPLE CRON FILE below).

上面提到的例子是这样的:

0 4 8-14 * *    test $(date +\%u) -eq 6 && echo "2nd Saturday"

所以在你的情况下它会是这样的(未经测试):

45   8,12,16 4-31 * *  test $(date +\%u) -lt 6 && my_program

关于linux - crontab (cronie),在每个月的特定几天运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46522946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com