This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import argparse, subprocess, signal, Queue, time | |
from threading import Thread, Lock | |
from sys import argv, stdout | |
from os import getpid, kill | |
class myThread (Thread): | |
def __init__(self, threadID, name, q): | |
Thread.__init__(self) |
NewerOlder