Add forever.py.

master
voussoir 2020-01-05 21:23:46 -08:00
parent 214a244e9d
commit ad667d0a17
1 changed files with 6 additions and 0 deletions

6
forever.py Normal file
View File

@ -0,0 +1,6 @@
import subprocess
import sys
cmd = sys.argv[1:]
while True:
subprocess.run(cmd, shell=True)