yt_de_study/common.py
Daniel Tsvetkov 438683ca10 syncing
2020-09-06 17:36:01 +02:00

8 lines
155 B
Python

import os
def run_os_cmd(command, should_print=True):
if should_print:
print(command)
output = os.popen(command).read()
return output