Spaces:
Runtime error
Runtime error
from subprocess import call | |
import sys | |
def run_cmd(command): | |
try: | |
call(command, shell=True) | |
except KeyboardInterrupt: | |
print("Process interrupted") | |
sys.exit(1) |