关于定时执行任务:Crontab的20个例子

    <!-- 作者区域 -->
<div class="author">
<a class="avatar" href="/u/3e74cab31591">
<img src="//upload.jianshu.io/users/upload_avatars/1156494/10ceb43302df.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/96/h/96" alt="96">



LeeLom



关注





2016.09.28 19:53*

字数 713

阅读 9186评论 6喜欢 15


    <!-- 文章内容 -->
<div data-note-content="" class="show-content">
<div class="show-content-free">
<h3>简介</h3>

Linux crontab和Windows task schedules非常的相似。Crontab可以用来在系统中定期的执行任务。比如:写了一个爬虫需要每天早上八点执行,就可以用到Crontab;安装的Tomcat服务器需要每天凌晨重启一次,也可以使用到Crontab。总之,几乎所有的定时任务,我们都可以通过Crontab这个工具来完成。

安装


yum install cronie`

Crontab在Linux上的结构


crontab结构.png

从左到右依次为:

[分钟] [小时] [每月的某一天] [每年的某一月] [每周的某一天] [执行的命令]

注意:请留意每个选项的取值范围。

如何 添加/编辑 Crontab


  • 添加或更新crontab中的命令
crontab -e

默认情况下,系统会编辑当前登录用户的crontab命令集合。需要编辑其他用户的命令集合,需要使用到如下的命令

crontab -u username -e

查看Crontab命令集合


  • 查看当前系统登录用户的Crontab命令集合
crontab -l
  • 查看其他用户的Crontab命令集合
crontab -u username -l

20个超实用的Crontab使用实例


  1. 每天 02:00 执行任务
0 2 * * * /bin/sh backup.sh
  1. 每天 5:00和17:00执行任务
0 5,17 * * * /scripts/script.sh
  1. 每分钟执行一次任务

    通常情况下,我们并没有每分钟都需要执行的脚本(默默的想到了12306--)
  * * * * *  /scripts/script.sh
  1. 每周日 17:00 执行任务
0 17 * * sun  /scripts/script.sh
  1. 每 10min 执行一次任务
*/10 * * * * /scripts/monitor.sh
  1. 在特定的某几个月执行任务
  * * * jan,may,aug * /script/script.sh
  1. 在特定的某几天执行任务
0 17 * * sun,fri /script/scripy.sh

在每周五、周日的17点执行任务

  1. 在某个月的第一个周日执行任务
0 2 * * sun  [ $(date +%d) -le 07 ] && /script/script.sh
  1. 每四个小时执行一个任务
0 */4 * * * /scripts/script.sh
  1. 每周一、周日执行任务
0 4,17 * * sun,mon /scripts/script.sh
  1. 每个30秒执行一次任务

    我们没有办法直接通过上诉类似的例子去执行,因为最小的是1min。但是我们可以通过如下的方法。
  * * * * * /scripts/script.sh
* * * * * sleep 30; /scripts/script.sh
  1. 多个任务在一条命令中配置
  * * * * * /scripts/script.sh; /scripts/scrit2.sh
  1. 每年执行一次任务
@yearly /scripts/script.sh

@yearly 类似于“0 0 1 1 *”。它会在每年的第一分钟内执行,通常我们可以用这个发送新年的问候。

  1. 每月执行一次任务
@yearly /scripts/script.sh
  1. 每周执行一次任务
@yearly /scripts/script.sh
  1. 每天执行一次任务
@yearly /scripts/script.sh
  1. 每分钟执行一次任务
@yearly /scripts/script.sh
  1. 系统重启时执行
@reboot /scripts/script.sh
  1. 将 Cron 结果重定向的特定的账户

    默认情况下,cron 只会将结果详情发送给 cron 被制定的用户。如果需要发送给其他用户,可以通过如下的方式:
  # crontab -l
MAIL=bob
0 2 * * * /script/backup.sh
  1. 将所有的 cron 命令备份到文本文件当中

    这是一个当我们丢失了cron命令后方便快速的一个恢复方式。

    下面是利用这个方式恢复cron的一个小例子。(看看就行~)

    首先:检查当前的cron
# crontab -l
MAIL=rahul
0 2 * * * /script/backup.sh

然后:备份cron到文件中

# crontab -l > cron-backup.txt
# cat cron-backup.txt
MAIL=rahul
0 2 * * * /script/backup.sh

接着:移除当前的cron

# crontab -r
# crontab -l
no crontab for root

恢复:从text file中恢复

# crontab cron-backup.txt
# crontab -l
MAIL=rahul
0 2 * * * /script/backup.sh

原文链接


Crontab in Linux with 20 Useful Examples to Schedule Jobs

      </div>
</div>
</div> <!-- 连载目录项 --> <!-- 打赏文章、购买文章、购买连载 -->
<div id="free-reward-panel" class="support-author"><p>小礼物走一走,来简书关注我</p> <div class="btn btn-pay">赞赏支持</div> <div class="supporter"><ul class="support-list"></ul> <!----></div> <!----> <!----></div> <div class="show-foot">
<a class="notebook" href="/nb/2353616">
<i class="iconfont ic-search-notebook"></i>
<span>随笔</span>



© 著作权归作者所有

  <!-- 文章底部作者信息 -->
<div class="follow-detail">
<div class="info">
<a class="avatar" href="/u/3e74cab31591">
<img src="//upload.jianshu.io/users/upload_avatars/1156494/10ceb43302df.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/96/h/96" alt="96">

关注

LeeLom

      <p>写了 14230 字,被 281 人关注,获得了 527 个喜欢</p></div>
<div class="signature">BYR / iOS / Student

Blog: https://leelom.github.io/

关于定时执行任务:Crontab的20个例子的更多相关文章

  1. Debian的定时执行命令Crontab

    转载:http://i.592.net/?post=276 Debian的定时执行命令Crontab,这个相当于Windows的计划任务 想要让Debian定时执行命令就得靠crontab了!     ...

  2. linux定时执行任务crontab命令用法

    linux系统的定时任务是由 cron (crond) 这个系统服务来控制的.Linux 系统上面原本就有非常多的计划性工作,因此这个系统服务是默认启动的.另外, 由于使用者自己也可以设置计划任务,所 ...

  3. Linux crontab定时执行任务 命令格式与详细例子

    基本格式 : * * * * * command 分 时 日 月 周 命令 第1列表示分钟1-59 每分钟用*或者 */1表示 第2列表示小时1-23(0表示0点) 第3列表示日期1-31 第4列表示 ...

  4. Linux crontab定时执行任务命令格式与详细例子

    基本格式 : * * * * * command 分 时 日 月 周 命令 第1列表示分钟1-59 每分钟用*或者 */1表示 第2列表示小时1-23(0表示0点) 第3列表示日期1-31 第4列表示 ...

  5. Linux crontab定时执行任务 命令格式与详细例子(转)

    基本格式 : * * * * * command 分 时 日 月 周 命令 第1列表示分钟1-59 每分钟用*或者 */1表示 第2列表示小时1-23(0表示0点) 第3列表示日期1-31 第4列表示 ...

  6. Linux下定时执行任务(crontab命令)

    1.循环执行的计划任务 linux下面有atd和crond两种计划任务,其中,atd服务使用的at命令只能执行一次,而crond服务使用的crontab定义的命令,是循环作用的,所以crond才符合我 ...

  7. linux 定时执行任务 crontab

    欲编写定时任务访问网页和打开图片 原来写法为 #!/bin/bash #可以执行 echoecho "Hello" > dir/file.txt #不可以执行 xdg-ope ...

  8. ubuntu定时执行任务——crontab的使用

    先补上几个链接,后续再总结 #参考# http://www.cnblogs.com/kaituorensheng/p/4494321.html http://blogread.cn/it/articl ...

  9. linux后台执行命令crontab

    有如下几种方式: crontab at & nohup 1. crontab 定时执行任务 # crontab -e //编辑crontab配置文件 Select an editor. To ...

随机推荐

  1. Windows Server 2008 R2远程桌面服务安装配置和授权激活

    1.安装 2.远程桌面授权激活 2.1 管理工具——远程桌面服务——(远程桌面授权管理)RD授权管理器: 2.2 由于RD授权服务器还未激活,所以授权服务器图标右下角显示红色×号: 点服务器展开——右 ...

  2. 网页链接在QQ内因多人投诉被拦截的解决方案

    背景 相信大家经常会遇到一个头疼的问题就是,明明自己的网页没有违规内容(比如线下活动的推广),但链接在QQ内转发分享会被QQ管家拦截,导致用户无法访问. 那么当大家遇到这个问题的时候应该怎么办呢?不用 ...

  3. 吴裕雄 python 机器学习——核化PCAKernelPCA模型

    # -*- coding: utf-8 -*- import numpy as np import matplotlib.pyplot as plt from sklearn import datas ...

  4. 推荐一个手机端切换地址gps的app

    在写脚本的时候遇到的 客户提供了这个app 免费 自身可以防检测 苹果和安卓都可以使用   官网 http://www.daniu.net/   搜索 大牛 或者danniu即可

  5. 507,介绍一下标准的css盒子模型?低版本ie的盒子模型有什么不同的?

    有两种,IE盒子模型,另外是W3C盒子模型: 盒模型都包括:内容(content),填充(padding),边界(margin),边框(border): 区别:IE的content部分吧border和 ...

  6. yii2 password hash生成与验证方法

    1.生成 $password是明文.如:123456 $this->password_hash = Yii::$app->security->generatePasswordHash ...

  7. Django 创建app 应用,数据库配置

    一.create project mkdir jango cd jango 目录创建project myapp django-admin startproject myapp 2.在给project创 ...

  8. for语句处理多维数组

    看C++Primer第三章看到的,记录一下. 下面这段代码非法,因为row指向的是每一行的一个大小为10的一维数组,默认转为指针,即row其实是一个int*类型的指针,显然内层循环就出错了 int a ...

  9. composer install报错intervention/image 2.4.x-dev requires ext-fileinfo * -> the requested PHP extension fileinfo is missing from your system.

    (1)问题:intervention/image 2.4.x-dev requires ext-fileinfo * -> the requested PHP extension fileinf ...

  10. PHP 文件上传之如何识别文件伪装?——PHP的fileinfo扩展可!

    问题:文件上传时候需要验证上传的文件是否合法,文件伪装如何识别? 一个简单测试:把txt文件后缀直接改成jpg;上传 <!DOCTYPE html> <html> <ti ...