linux自带的crontab调度配置说明
一.crontab命令概念:
crontab命令用于设置周期性被执行的命令
二.crontab帮助:
crontab --help
Usage:
crontab [options] file
crontab [options]
crontab -n [hostname]
Options:
-u <user> define user
-e edit user's crontab
-l list user's crontab
-r delete user's crontab
-i prompt before deleting
-n <host> set host in cluster to run users' crontabs
-c get host in cluster to run users' crontabs
-s selinux context
-x <mask> enable debugging
三.使用方式:
添加定时任务 crontab -e
展示定时任务 crontab -l
四.配置格式说明:
* * * * *
分 时 天 月 周
五.示例:
*/5 * * * * 每5分钟调一次
*/30 * * * * 每30分钟调一次
5 6 * * * 每天6点5分调一次
30 */2 * * * 每2小时的30分调一次
0 0 10 1 * * 每月1号的10点0调一次
0 1,13 1,2,3 * * 每月1,2,3号的1点和13点调一次
30 23 30,31 * * 每30,31号的23点30分调一次
0 3 * * 0 每周日3点0分调一次
六.用户调度任务存储位置:
cat /var/spool/cron/root
*/2 * * * * echo hello >> /tmp/hello.log
标签:一次,30,调度,crontab,分调,user,linux,自带
From: https://blog.csdn.net/weixin_45547818/article/details/141940637