一、计划任务最小一分钟执行一次
//编辑crontab文件
crontab -e
//Minute Hour Day Month Week command
* * * * * command
//每分钟执行一次
*/1 * * * * command
二、利用python死循环实现每10s执行一次脚本
#!/usr/bin/env python
import os,time
#how to run it?
#nohup python -u example.py >> /data/logs/example.log 2>&1 &
while True:
os.system('command')//执行系统命令
time.sleep(10)//推迟执行、休眠
三、1-10s执行一次脚本
#!/usr/bin/env python
import os,time,random
#how to run it?
#nohup python -u example.py >> /data/logs/example.log 2>&1 &
while True:
sleeptime=random.randint(0, 10)//1-10随机数
os.system('command')
time.sleep(sleeptime)
网友评论