计划任务

分级计划任务

*/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

  

原文地址:https://www.cnblogs.com/luoliyu/p/10931252.html