首页 > 其他 > 详细

crontab实现以秒执行

时间:2014-05-08 02:22:38      阅读:370      评论:0      收藏:0      [点我收藏+]

 linux中crontab实现以秒执行任务

很多时候,我们计划任务需要精确到秒来执行,根据以下方法,可以很容易地以秒执行任务。
以下方法将每10秒执行一次
1.编辑crontab
crontab -e
* * * * * /bin/date >>/tmp/date.txt
* * * * * sleep 10; /bin/date >>/tmp/date.txt
* * * * * sleep 20; /bin/date >>/tmp/date.txt
* * * * * sleep 30; /bin/date >>/tmp/date.txt
* * * * * sleep 40; /bin/date >>/tmp/date.txt
* * * * * sleep 50; /bin/date >>/tmp/date.txt
2.检查结果
tail -f /tmp/date.txt

 

本文出自 “运维人生” 博客,请务必保留此出处http://yangsc.blog.51cto.com/7051889/1408142

crontab实现以秒执行,布布扣,bubuko.com

crontab实现以秒执行

原文:http://yangsc.blog.51cto.com/7051889/1408142

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!