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