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

linux学习笔记——任务调度

时间:2014-11-18 13:08:36      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:sp   文件   on   bs   linux   as   学习   nbsp   c   

任务调度 /etc/crontable

crontab -e 编辑任务
crontab -r 终止所有任务

* * * * * date > /home/date1.txt //每分钟把当前日期写到date1.txt中
分  每小时第几分钟执行  0-59
时  每日第几个小时执行  0-23
月  每月第几天执行      1-31
年  每年第几月执行      1-12
周  每周第几天执行      0-6

【shell编程】
写个文件mytask.sh
  * * * * * date > /home/date1.txt
  cp /home/date1.txt /root
任务中写 * * * * * mytask.sh

注意:不能执行,授权chmod 744 mytask.sh

linux学习笔记——任务调度

标签:sp   文件   on   bs   linux   as   学习   nbsp   c   

原文地址:http://www.cnblogs.com/king-/p/4105275.html

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