* */5 0-23 * * *
时间: 2024-01-17 18:18:51 浏览: 88
Cron表达式"* */5 0-23 * * * ?"表示每隔5分钟执行一次,从0点到23点的每个小时都执行。下面是一个演示例子:
```shell
* */5 0-23 * * * ? echo "This command will be executed every 5 minutes from 0 to 23 hours."
```
这个Cron表达式将会每隔5分钟执行一次echo命令,并输出"This command will be executed every 5 minutes from 0 to 23 hours."。
阅读全文