linux 定时任务 crontab

定时任务是一个比较实用的功能,之前在爬数据的时候回用到,但是当时用的是java提供的一个依赖来实现的,今天想研究一下linux的定时任务,因为平时自己写一些小脚本的时候,有时候会半夜跑,这样定时任务就是最好的选择。

先声明一下,我这里用的是ubuntu,其他linux发行版可能会有点差异。安装什么的这里就不再赘述了,因为我的ubuntu是默认自带的。

进入配置页面:

crontab -e //执行这条命令会出现下面的这些信息
  1 # Edit this file to introduce tasks to be run by cron.
  2 # 
  3 # Each task to run has to be defined through a single line
  4 # indicating with different fields when the task will be run
  5 # and what command to run for the task
  6 # 
  7 # To define the time you can provide concrete values for
  8 # minute (m), hour (h), day of month (dom), month (mon),
  9 # and day of week (dow) or use '*' in these fields (for 'any').# 
 10 # Notice that tasks will be started based on the cron's system
 11 # daemon's notion of time and timezones.
 12 # 
 13 # Output of the crontab jobs (including errors) is sent through
 14 # email to the user the crontab file belongs to (unless redirected).
 15 # 
 16 # For example, you can run a backup of all your user accounts
 17 # at 5 a.m every week with:
 18 # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
 19 # 
 20 # For more information see the manual pages of crontab(5) and cron(8)

配置编辑器:

这里你有可能用的是nano编辑器,如果你要切换编辑器的话,可以输以下命令:

select-editor //输入命令
output:
Select an editor.  To change later, run 'select-editor'.
  1. /bin/ed
  2. /bin/nano        <---- easiest
  3. /usr/bin/vim.basic
  4. /usr/bin/vim.tiny

Choose 1-4 [2]:
   在这里选择你喜欢的编辑器,这里我选的是3

自定义定时任务:

然后在crontab -e 打开的那个配置页面进行配置定时任务就可以了:
如下:

  */1 * * * * date >> /home/vagrant/time.log 
  */1 * * * * cd /home/vagrant && ./test.sh

这里面我配置了两个定时任务,第一个定时任务就是,每隔一分钟向后面那个目录下的time.log这个文件里最佳此刻的时间。
第二个定时任务是,每隔一分钟 进入后面那个路径下,然后执行test.sh脚本。

下面稍微解释下crontab中每行的含义。crontab中的每一行代表一个定期执行的任务,分为6个部分。前5个部分表示何时执行命令,最后一个部分表示执行的命令。每个部分以空格分隔,除了最后一个部分(命令)可以在内部使用空格之外,其他部分都不能使用空格。前5个部分分别代表:分钟,小时,天,月,星期,每个部分的取值范围如下:

  • 分钟 0 - 59

  • 小时 0 - 23

  • 天 1 - 31

  • 月 1 - 12

  • 星期 0 - 6 0表示星期天

除了这些固定值外,还可以配合星号(*),逗号(,),和斜线(/)来表示一些其他的含义:

星号 表示任意值,比如在小时部分填写 * 代表任意小时(每小时)

逗号 可以允许在一个部分中填写多个值,比如在分钟部分填写 1,3 表示一分钟或三分钟

斜线 一般配合 * 使用,代表每隔多长时间,比如在小时部分填写 */2 代表每隔两分钟。所以 */1 和 * 没有区别

              */2 可以看成是能被2整除的任意值。

查看自定义脚本:

然后看看一下这个test.sh脚本:

  #!/bin/bash
  echo "test" >> /home/vagrant/time.log

可以看到这里面就是一个简单的输出test这个字符串到后面那个文件里。

启动cron服务

sudo /etc/init.d/crond start

查看输出结果:

我们过几分钟看一下time.log这个文件

vagrant@vagrant-ubuntu-trusty-64:~$ tail -f time.log 
test
Thu Mar 23 07:22:02 UTC 2017
test
Thu Mar 23 07:23:01 UTC 2017
test
Thu Mar 23 07:24:01 UTC 2017
Thu Mar 23 07:25:01 UTC 2017
test
Thu Mar 23 07:26:01 UTC 2017
test

这里用tail -f fimename 这样会实时刷新最新的文件信息。可以看到这个文件里面已经有很多信息了,都是一分钟调用一次的。

注意事项:

  • 文件的路径都要用绝对路径,这样不会有未知的错误
  • 接着就是执行脚本的时候要有权限,且脚本要是可执行的

你可能感兴趣的:(linux 定时任务 crontab)