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/clear.py
2012-02-29 12:11:51 -08:00

13 lines
236 B
Python
Executable file

#!/usr/bin/env python
# Tiny little log clearer by neersighted
import sys
import os
import subprocess
if os.path.isfile("./cloudbot"):
clear = "./cloudbot clear"
else:
clear = ":"
subprocess.call(clear, shell=True)
sys.exit()