recipes/machine_admin/util.py

4 lines
82 B
Python
Raw Normal View History

import subprocess
def run_op(op: str):
return subprocess.run(op, shell=True)