Add files via upload

This commit is contained in:
Josh Creek
2018-06-06 18:49:59 +01:00
committed by GitHub
parent a88e7331c8
commit 82260af835
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/python
from subprocess import Popen
import sys
filename = sys.argv[1]
while True:
print("\nStarting " + filename)
p = Popen("python3 " + filename, shell=True)
p.wait()