netbox-agent/netbox_agent/drivers/cmd.py

11 lines
206 B
Python
Raw Normal View History

2019-08-05 11:54:06 +02:00
import re
import subprocess
def get(value, regex):
output = subprocess.getoutput(value)
r = re.search(regex, output)
if r and len(r.groups()) > 0:
return r.groups()[0]
return None