6 lines
107 B
Python
6 lines
107 B
Python
import subprocess
|
|
|
|
|
|
def run_command(args):
|
|
return subprocess.run(args, capture_output=True, text=True)
|