当前位置:网站首页>crontab timing operation
crontab timing operation
2022-07-31 06:32:00 【xp_fangfei】
crontab 介绍
Linux crontab 是用来定期执行程序的命令.
当安装完成操作系统之后,默认便会启动此任务调度命令.
crond 命令每分钟会定期检查是否有要执行的工作,如果有要执行的工作便会自动执行该工作.
注意:新创建的 cron 任务,不会马上执行,至少要过 2 分钟后才可以,当然你可以重启 cron 来马上执行.
而 linux 任务调度的工作主要分为以下两类:
- 系统执行的工作:系统周期性所要执行的工作,如备份系统数据、清理缓存
- 个人执行的工作:某个用户定期要做的工作,例如每隔 10 分钟检查邮件服务器是否有新信,这些工作可由每个用户自行设置
crontab 格式说明

在以上各个字段中,还可以使用以下特殊字符:
- "* "代表所有的取值范围内的数字,如月份字段为*,则表示1到12个月;
- "/"代表每一定时间间隔的意思,如分钟字段为*/10,表示每10分钟执行1次.
- "-"代表从某个区间范围,是闭区间.如“2-5”表示“2,3,4,5”,小时字段中0-23/2表示在0~23点范围内每2个小时执行一次.
- ","分散的数字(不一定连续),如1,2,3,4,7,9.
注:由于各个地方每周第一天不一样,因此Sunday=0(第一天)或Sunday=7(最后1天).
crontab 语法
crontab [ -u user ] file
或
crontab [ -u user ] {
-l | -r | -e }
参数说明:
-u user 是指设定指定 user 的时程表,这个前提是你必须要有其权限(比如说是 root)才能够指定他人的时程表.如果不使用 -u user 的话,就是表示设定自己的时程表.
-e : 执行文字编辑器来设定时程表,内定的文字编辑器是 VI,如果你想用别的文字编辑器,则请先设定 VISUAL 环境变数来指定使用那个文字编辑器(比如说 setenv VISUAL joe)
-r : 删除目前的时程表
-l : 列出目前的时程表
实例1
//每一分钟执行一次 /bin/ls:
* * * * * /bin/ls
//在 12 月内, 每天的早上 6 点到 12 点,每隔 3 个小时 0 分钟执行一次 /usr/bin/backup:
0 6-12/3 * 12 * /usr/bin/backup
//周一到周五每天下午 5:00 寄一封信给 [email protected]:
0 17 * * 1-5 mail -s "hi" [email protected].name < /tmp/maildata
实际配置
Take your own computer as an example:
crontab -e
结果:
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').
#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
Write the operation you want to perform at the end of the file
54 21 * * * rm -r /home/ubuntu/log #每天晚上九点54删除日志
注意:The editor is selected when editing for the first time,根据自己的情况选择即可
实例2
1.删除文件命令:
find 对应目录 -mtime +天数 -name "文件名" -exec rm -rf {
} \;
实例命令:
find /export/Logs/ -mtime +2 -name "*.log" -exec rm -rf {
} \;
#将/export/Logs/目录下所有2天前带".log"的文件全部删除.
find /export/log/ -mtime +2 -name "*.20*.log" -exec rm -rf {
} \;
#将/export/Logs/目录下所有2天前带*.20*.log的文件全部删除.
具体参数说明如下:
- find:linux的查找命令,用户查找指定条件的文件;
- /export/Logs/:想要进行清理的任意目录;
- -mtime:标准语句写法;
- +2:查找2天前的文件,这里用数字代表天数;
- “.log"、".20*.log”:希望查找的数据类型,".log"表示查找扩展名为log的所有文件,""表示查找所有文件,以此类推,灵活使用
- -exec:固定写法;
- rm -rf:强制删除文件,包括目录;
- {} \ ; :固定写法,一对大括号+空格+\ ;
边栏推荐
- Word vector - demo
- MW:3400 4-Arm PEG-DSPE 四臂-聚乙二醇-磷脂一种饱和的18碳磷脂
- 多元线性回归方程原理及其推导
- MySQL 出现 The table is full 的解决方法
- 2022 SQL big factory high-frequency practical interview questions (detailed analysis)
- 2021-09-30
- 关于Iframe
- opencv之访问图像像素的三种方法
- Remote file xxx is mapped to the local path xxx and can‘t be found. You can continue debugging....
- 为数学而歌之伯努利家族
猜你喜欢

Cholesterol-PEG-Azide CLS-PEG-N3 Cholesterol-PEG-Azide MW:3400

MySQL 主从切换步骤

Multi-Modal Face Anti-Spoofing Based on Central Difference Networks学习笔记

crontab的定时操作

Sourcery插件(自动提升代码质量)

Cholesterol-PEG-Acid CLS-PEG-COOH 胆固醇-聚乙二醇-羧基修饰肽类化合物

The content of the wangeditor editor is transferred to the background server for storage

ImportError: cannot import name ‘Xxxx‘ from partially initialized module ‘xx.xx.xx‘

四种常见的POST提交数据方式

多元线性回归方程原理及其推导
随机推荐
Wangeditor rich text editor to upload pictures and solve cross-domain problems
softmax函数详解
wangeditor富文本编辑器上传图片以及跨域问题解决
我的训练函数模板(动态修改学习率、参数初始化、优化器选择)
Tensorflow相关list
Cholesterol-PEG-Thiol CLS-PEG-SH Cholesterol-Polyethylene Glycol-Sulfhydryl
ROS之service传输图片
crontab的定时操作
浏览器中的画中画(Picture-in-Picture)API
活体检测CDCN学习笔记
PyTorch学习笔记08——加载数据集
CAS: 1403744-37-5 DSPE-PEG-FA Phospholipid-Polyethylene Glycol-Folic Acid for Scientific Research
opencv之图像二值化处理
ROS 之订阅多个topic时间同步问题
Data Preprocessing, Feature Engineering, and Feature Learning - Excerpt
如何修改数据库密码
pyspark.ml特征变换模块
About iframe
IDEA概述和安装及调试
Cholesterol-PEG-Thiol CLS-PEG-SH 胆固醇-聚乙二醇-巯基