作者:资深化妆师May | 来源:互联网 | 2023-07-24 19:54
linux下的crontab 默认的最低的是分级别定时器;
但是通过sleep睡眠的方式可以实现sleep 10;每隔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