9 lines
171 B
Python
Executable file
9 lines
171 B
Python
Executable file
#!/usr/bin/env python
|
|
# Tiny little restarter by neersighted
|
|
import sys
|
|
import subprocess
|
|
|
|
restart = "./cloudbot restart"
|
|
|
|
subprocess.call(restart, shell=True)
|
|
sys.exit()
|