Add forever.py.

This commit is contained in:
voussoir 2020-01-05 21:23:46 -08:00
parent 214a244e9d
commit ad667d0a17

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)