File size: 171 Bytes
f38488f | 1 2 3 4 5 6 | #!/usr/bin/env python3
import subprocess
class ActionExecutor:
def run(self, cmd: str):
return subprocess.run(cmd, shell=True, capture_output=True, text=True)
|
f38488f | 1 2 3 4 5 6 | #!/usr/bin/env python3
import subprocess
class ActionExecutor:
def run(self, cmd: str):
return subprocess.run(cmd, shell=True, capture_output=True, text=True)
|