https://github.com/annotation/text-fabric
Raw File
Tip revision: 632036cd933fd0bf4525a19451341bbf1532d03b authored by Dirk Roorda on 08 September 2022, 15:17:15 UTC
fixes in volume support
Tip revision: 632036c
srun.py
from subprocess import run

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