mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-25 07:17:16 +00:00
6 lines
90 B
Python
6 lines
90 B
Python
import re
|
|
import os
|
|
|
|
def run_cmd_get_output(cmd):
|
|
return os.popen(cmd).read().strip()
|