mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04: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()
|