Linux定时任务
Posted liw66
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux定时任务相关的知识,希望对你有一定的参考价值。
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定时任务的主要内容,如果未能解决你的问题,请参考以下文章