mirror of
https://github.com/jcreek/forever-run-discord-bots-or-other-python-scripts.git
synced 2026-07-12 18:33:47 +00:00
10 lines
193 B
Python
10 lines
193 B
Python
#!/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()
|