SuTTS / app.py
SuCicada's picture
init
f97d08b
raw history blame
No virus
141 Bytes
import subprocess
# Run a shell command and capture its output
output = subprocess.check_output("ls -l", shell=True)
print(output.decode())