码迷,mamicode.com
首页 > 系统相关 > 详细

Linux定时任务

时间:2020-03-30 23:12:47      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:spool   邮箱   执行   linu   增加   保存   需要   没有   cront   

1.创建sh文件
touch hello.sh
vi hello.sh 
输入i 插入
#!/bin/sh
echo hello world;
按esc 输入:然后输入wq保存退出

增加sh执行权限
chmod 700 hello.sh
有执行权限的文件是绿色的

执行./hello.sh

2.加入定时任务
需要注意不同用户下面的定时任务不同,互相不可见

查看定时任务
crontab -l

编辑定时任务
crontab -e

插入
*/1 * * * * /home/hello.sh  
按esc 输入:然后输入wq保存退出

此任务为1分钟执行hello.sh一次
但是在控制台并没有看到任何显示 
是因为单纯echo,从屏幕上看不到任何输出,
cron把任何输出都email到root的邮箱了

3.查看root邮箱
tail -f /var/log/cron
这里可以看到输出

查看用户test的邮箱
tail -f /var/spool/mail/test

 

Linux定时任务

标签:spool   邮箱   执行   linu   增加   保存   需要   没有   cront   

原文地址:https://www.cnblogs.com/liw66/p/12601790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!