码迷,mamicode.com
首页 > 编程语言 > 详细

多线程mtr-代码

时间:2015-09-06 14:31:20      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

#!/bin/env python
# -*- coding: utf-8 -*-
# @Date    : 2015-09-06 11:30:48
# @Author  : Your Name (you@example.org)
# @Link    : http://example.org
# @Version : $Id$

import threading
import commands
import time



def Py_Mtr(ip):
        ISOTIMEFORMAT=‘%Y-%m-%d %X‘
        time_now=time.strftime( ISOTIMEFORMAT,time.localtime())
        filename=‘/tmp/‘+ip+‘.txt‘
        f=open(filename,‘w‘)
        f.write(time_now)
        f.write(‘\n‘)
        mtr_out=commands.getstatusoutput("mtr -r -c 20 -n %s"%ip)[1]
        time_now=time.strftime( ISOTIMEFORMAT,time.localtime())
        f.write(mtr_out)
        f.write(‘\n‘)
        f.write(time_now)
        f.write(‘\n‘)
        f.close()



if __name__==‘__main__‘:
        ip_target=[‘1.1.1.1‘,‘2.2.2.2‘,‘3.3.3.3‘]
        threads = []   #多线程
        print "Begin......"
        for i in ip_target:

                a=threading.Thread(target=Py_Mtr,args=(i,))
                a.start()
                threads.append(a)
        # 等待所有线程完成
        #       for t in threads:
        #               t.join()
                print "Exiting Main Thread"

 

多线程mtr-代码

标签:

原文地址:http://www.cnblogs.com/noobkey/p/4785260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!