方法一:巧用crontab命令

linux下crontab命令可以执行定时任务,但最小粒度为1min,可对其合理运用,以实现秒级别的粒度。

以下代码是实现周期为20s的定时任务,两种方式均可,但稍有不同。

  • 修改用户的日常任务:crontab -e

    * * * * * python test.py
    * * * * * sleep 20; python test.py 
    * * * * * sleep 40; python test.py 
    
  • 修改系统的定时任务:vim /etc/crontab

    * * * * * root python test.py
    * * * * * root sleep 20 && python test.py
    * * * * * root sleep 40 && python test.py
    

方法二:自定义定时执行的脚本

写个后台运行的脚本一直循环运行,然后每次循环sleep 20s。

while true ;do

command

sleep 20 //间隔秒数

done


参考

【1】Linux下实现秒级定时任务的两种方案(crontab 每秒运行)
【2】Linux定時任務crontab每三秒執行一次shell

GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐