Python commands獲取程式id

greenteazsh發表於2011-06-22
'''
得到程式的pid
'''
def getPid(process):
    import commands
    import sys
    cmd = "ps aux | grep '%s' " % process
    logging.info(cmd)
    info = commands.getoutput(cmd)
    infos = info.split()
    if len(infos) > 1:
        return infos[1]
    else:
        return -1
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9521459/viewspace-700475/,如需轉載,請註明出處,否則將追究法律責任。

相關文章