mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-24 20:28:06 +02:00
8 lines
131 B
Python
8 lines
131 B
Python
"""File C — contains the terminal CMD_EXEC sink."""
|
|||
|
|||
import subprocess
|
|||
|
|||
|
|||
def exec_cmd(cmd):
|
|||
subprocess.call(cmd, shell=True)
|