Crontab:
基本格式 :
* * * * * command
分 时 日 月 周 命令
第1列表示分钟1~59 每分钟用*或者 */1表示
第2列表示小时1~23(0表示0点)
第3列表示日期1~31
第4列表示月份1~12
第5列标识号星期0~6(0表示星期天)
第6列要运行的命令
[root@VM_48_141_centos ~]# crontab -e //会自动进入vi编辑器模式
crontab: installing new crontab //成功后返回的样式
[root@VM_48_141_centos ~]# ls
mysql57-community-release-el7-11.noarch.rpm test test1.txt
[root@VM_48_141_centos ~]# crontab -l
*/1 * * * * /usr/local/qcloud/stargate/admin/start.sh > /dev/null 2>&1 &
* * * * * date>>/root/crontab.txt
[root@VM_48_141_centos ~]# ls
crontab.txt mysql57-community-release-el7-11.noarch.rpm test test1.txt
[root@VM_48_141_centos ~]# cat crontab.txt
Sat Apr 21 09:33:01 CST 2018
[root@VM_48_141_centos ~]# vi task.sh //当有多个任务时,编写shell脚本
[root@VM_48_141_centos ~]# chmod 744 task.sh //可执行文件
[root@VM_48_141_centos ~]# ll
total 44
-rw-r--r-- 1 root root 145 Apr 21 09:37 crontab.txt
-rw-r--r-- 1 root root 25680 Apr 27 2017 mysql57-community-release-el7-11.noarch.rpm
-rwxr--r-- 1 root root 37 Apr 21 09:37 task.sh
drwxr-xr-x 3 root root 4096 Apr 19 21:55 test
-rw-r--r-- 1 root root 7 Apr 19 12:13 test1.txt
[root@VM_48_141_centos ~]# crontab -e
crontab: installing new crontab
[root@VM_48_141_centos ~]# ls
crontab.txt mysql57-community-release-el7-11.noarch.rpm task.sh test test1.txt
[root@VM_48_141_centos ~]# crontab -l
*/1 * * * * /usr/local/qcloud/stargate/admin/start.sh > /dev/null 2>&1 &
* * * * * date>>/root/crontab.txt
* * * * * /task.sh
[root@VM_48_141_centos ~]# cat task.sh
cp /root/crontab.txt /root/shell.txt
[root@VM_48_141_centos ~]# cat crontab.txt
Sat Apr 21 09:33:01 CST 2018
Sat Apr 21 09:34:01 CST 2018
Sat Apr 21 09:35:01 CST 2018
Sat Apr 21 09:36:01 CST 2018
Sat Apr 21 09:37:01 CST 2018
Sat Apr 21 09:38:01 CST 2018
Sat Apr 21 09:39:01 CST 2018
Sat Apr 21 09:40:01 CST 2018
at
at定时任务,指定一个时间执行一个任务,只能执行一次。
at允许使用一套相当复杂的指定时间的方法。它能够接受在当天的hh:mm(小时:分钟)式的时间指定。
假如该时间已过去,那么就放在第二天执行。当然也能够使用midnight(深夜),noon(中午),teatime(饮茶时间,一般是下午4点)等比较模糊的 词语来指定时间。
用户还能够采用12小时计时制,即在时间后面加上AM(上午)或PM(下午)来说明是上午还是下午。 也能够指定命令执行的具体日期,指定格式为month day(月 日)或mm/dd/yy(月/日/年)或dd.mm.yy(日.月.年)。指定的日期必须跟在指定时间的后面。
上面介绍的都是绝对计时法,其实还能够使用相对计时法,这对于安排不久就要执行的命令是很有好处的。
指定格式为:now + count time-units,now就是当前时间,time-units是时间单位,这里能够是minutes(分钟)、hours(小时)、days(天)、weeks(星期)。count是时间的数量,究竟是几天,还是几小时,等等。 更有一种计时方法就是直接使用today(今天)、tomorrow(明天)来指定完成命令的时间。
语法
选项
-f:指定包含具体指令的任务文件;
-q:指定新任务的队列名称;
-l:显示待执行任务的列表;
-d:删除指定的待执行任务;
-m:任务执行完成后向用户发送E-mail。
删除at作业
atrm [作业表示号]
at -r [作业表示号]
[root@VM_48_141_centos ~]# at now + 1 minutes
at> date >> /root/at.txt
at> <EOT>
job 1 at Sat Apr 21 09:48:00 2018
[root@VM_48_141_centos ~]# ls
at.txt crontab.txt mysql57-community-release-el7-11.noarch.rpm task.sh test test1.txt
[root@VM_48_141_centos ~]# cat at.txt
Sat Apr 21 09:48:05 CST 2018
atq
它是at命令的一个链接,当提交一个作业后,他就被复制到/var/spool/at目录中,同样在预计的时间运行
crontab参考文章:https://www.cnblogs.com/lgqboke/p/5805809.html