Henry
发布于 2024-01-14 / 14 阅读
0
0

crontab

指令描述

Linux crontab 是用来定期执行程序的命令。

当安装完成操作系统之后,默认便会启动此任务调度命令。

crond 命令每分钟会定期检查是否有要执行的工作,如果有要执行的工作便会自动执行该工作。

注意:新创建的 cron 任务,不会马上执行,至少要过 2 分钟后才可以,当然你可以重启 cron 来马上执行。

而 linux 任务调度的工作主要分为以下两类:

1、系统执行的工作:系统周期性所要执行的工作,如备份系统数据、清理缓存
2、个人执行的工作:某个用户定期要做的工作,例如每隔 10 分钟检查邮件服务器是否有新信,这些工作可由每个用户自行设置

功能使用简介

加载配置界面

crontab -e

如原来不存在定时任务,则可以通过以下选项自动新建一个空的配置。如原来存在定时任务,则自动进入配置界面

空配置提示信息如下:

no crontab for myuser - using an empty one

Select an editor.  To change later, run 'select-editor'.
  1. /bin/nano        <---- easiest
  2. /usr/bin/vim.tiny
  3. /bin/ed

Choose 1-3 [1]: 

自动加载配置如下:

# 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

开机启动时执行

# ****** 省略备注 *******
# For more information see the manual pages of crontab(5) and cron(8)
# 
# m h  dom mon dow   command

@reboot /server/mount_dev/mount_dev.sh
  • 启动时自动执行:@reboot
  • 自动执行的脚本:/server/mount_dev/mount_dev.sh

帮助文档

crontab: 不适用的选项 -- -  
crontab: usage error: unrecognized option  
usage:    crontab \[-u user\] file  
    crontab \[ -u user \] \[ -i \] { -e | -l | -r }  
        (default operation is replace, per 1003.2)  
    -e    (edit user's crontab)  
    -l    (list user's crontab)  
    -r    (delete user's crontab)  
    -i    (prompt before deleting user's crontab)

评论