https://github.com/annotation/text-fabric
Raw File
Tip revision: 0f06fe82b2b9d1ecdf4c28702172daa2c3cb3bfa authored by Dirk Roorda on 17 July 2018, 06:52:33 UTC
-docker
Tip revision: 0f06fe8
srun.py
from subprocess import run

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