如何仅借助 cron 表达式识别该 cron 作业将在特定日期和时间运行
问问题
13127 次
4 回答
13
* * * * * command to be executed
- - - - -
| | | | |
| | | | +----- day of week (0 - 6) (Sunday=0)
| | | +------- month (1 - 12)
| | +--------- day of month (1 - 31)
| +----------- hour (0 - 23)
+------------- min (0 - 59)
将 替换为*
您需要的值。
于 2013-03-20T08:59:09.553 回答
9
cron 作业参数的结构
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
于 2013-03-20T09:17:41.220 回答
0
如果你使用 apache 控制面板,请参考它。通常它有一个cron job
很好的帮助和例子的部分
于 2013-03-20T09:02:06.480 回答
0
如果您想从 crontab 时间/日期值开始,然后查看未来运行时列表,请尝试使用dataphyx 的 cron 沙箱。
于 2013-04-01T06:55:11.547 回答