https://github.com/annotation/text-fabric
Raw File
Tip revision: 9222c4f04d886b245806c02ba5c9fada1320bee9 authored by Dirk Roorda on 11 July 2018, 13:42:37 UTC
various improvements
Tip revision: 9222c4f
srun.py
from subprocess import run

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