Revision 621da7d693d564b1a92e65f3925a0869a5acf905 authored by Dirk Roorda on 09 July 2020, 16:04:57 UTC, committed by Dirk Roorda on 09 July 2020, 16:04:57 UTC
1 parent 97d16ba
Raw File
srun.py
from subprocess import run

print('A')
run('python3 hello.py', shell=True)
print('B')
back to top