summaryrefslogtreecommitdiffstats
path: root/sploit/util.py
blob: 610ab31186d9ac1071c0b618be4aa3bdbca9bd3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from subprocess import run

def run_cmd(cmd):
    return run(cmd,capture_output=True).stdout.decode('utf-8').split('\n')[:-1]

__RUN_CACHE__ = {}
def run_cmd_cached(cmd):
    key = ''.join(cmd)
    if key in __RUN_CACHE__:
        return __RUN_CACHE__[key]
    else:
        result = run_cmd(cmd)
        __RUN_CACHE__[key] = result
        return result