mirror of
https://github.com/elicpeter/nyx.git
synced 2026-07-03 20:41:00 +02:00
7 lines
138 B
Python
7 lines
138 B
Python
import subprocess
|
|||
from source import get_user_input
|
|||
|
|||
def run_command():
|
|||
data = get_user_input()
|
|||
subprocess.call(data, shell=True)
|