首页 > 技术文章 > 计划任务

luoliyu 2019-05-27 16:07 原文

 

分级计划任务

*/1 * * * * sh /root/luoliyu/1.sh >>/root/luoliyu/cron.txt

  

秒级计划任务

* * * * * sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 5; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 10; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 15; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 20; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 25; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 30; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 35; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 40; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 45; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 50; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt
* * * * * sleep 55; sh /root/luoliyu/1.sh >>/root/luoliyu/cron2.txt

  

推荐阅读