首页

源码搜藏网

首页 > 开发教程 > 软件工程 >

python定时杀进程

创建时间:2016-06-06 23:26  

python定时杀进程

杀死特定进程的命令

获取名为phantomjs的进程pid

使用sched模块周期执行任务

基本API

任务时间重叠

周期执行

最终代码

import os, time, sched

schedule = sched.scheduler(time.time, time.sleep)

cmd = '''kill -9 `ps -aux|grep phantomjs|awk '{print $2}'`
'''

def recycle_eval(c, inc):
    schedule.enter(inc, 0, recycle_eval, (c, inc))
    os.system(c)
    print time.ctime(),'phantomjs killed'

if __name__ == '__main__':
    inc = 180
    schedule.enter(inc, 0, recycle_eval, (cmd, inc))
    schedule.run()

作者Focustc,来自于CSDN
0
0
   
上一篇:数据结构之数组
下一篇:图论(二):图的四种最短路径算法

相关内容

热门推荐