红联Linux门户
Linux帮助

linux定时执行shell

发布时间:2016-05-22 22:48:44来源:linux网站作者:温故而知新`

第一步:安装 crontab ,命令 yum -y install vixie-cron
扩展:service crond start //启动服务
service crond stop //关闭服务
service crond restart //重启服务
service crond reload //重新载入配置
service crond status //查看crontab服务状态


第二步:编写shell文件
要点:
1、文件后缀随意它只是存放命令的文件
2、文件中的第一行一定是 #!bin/bash 这行命令 声明这是shel l文件


第三步:添加到定时执行序列中
1、命令行输入 crontab -e 编辑执行序列
2、内容如 40 18 * * * bash /home/worldbackup.sh
前5个属性意思分别为  分 时 天 月 周
bash 脚本名   // 一种执行脚本的方式


本文永久更新地址:http://www.linuxdiyf.com/linux/20859.html