This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/lib/stop.py
2012-03-01 10:39:51 -08:00

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()