CentOS 定时任务文件保存及查看地方
Posted jrue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 定时任务文件保存及查看地方相关的知识,希望对你有一定的参考价值。
一、创建一个任务文件
(1)命令行输入crontab -e
crontab -e
(2)输入a或者i可以进入编辑状态,可输入任务代码。代码格式可以进入/etc/crontab查看
[root@VM-0-10-centos cron]# cat /etc/crontab
# 输出结果
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
二、保存文件
先按Esc键,然后输入“:wq”
三、查看文件
保存成功的文件去哪里了呢?在/var/spool/cron/下面
[root@VM-0-10-centos cron]# cd /var/spool/cron
[root@VM-0-10-centos cron]# ll
total 4
-rw------- 1 root root 176 May 19 14:17 root
这里可以看到一个root文件,因为我用的root账号登录,所以生成了一个root文件。
通过cat命令可以看到这个文件的内容就是前面编辑的内容。
以上是关于CentOS 定时任务文件保存及查看地方的主要内容,如果未能解决你的问题,请参考以下文章