温馨提示×

linux定时器crontab能设置多久执行一次

小樊
81
2024-12-28 01:06:41
栏目: 智能运维

是的,Linux的crontab工具可以设置任务的执行频率

* * * * * command-to-be-executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday is both 0 and 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

例如,如果你想让一个任务每天凌晨1点执行一次,你可以这样设置:

0 1 * * * /path/to/your/command

如果你想让一个任务每小时执行一次,你可以这样设置:

0 * * * * /path/to/your/command

你可以根据需要调整这些数字来设置不同的执行频率。

0