This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/lib/clear.py

14 lines
236 B
Python
Raw Normal View History

2012-02-29 21:00:10 +01:00
#!/usr/bin/env python
# Tiny little log clearer by neersighted
import sys
import os
import subprocess
2012-02-29 21:11:51 +01:00
if os.path.isfile("./cloudbot"):
clear = "./cloudbot clear"
2012-02-29 21:00:10 +01:00
else:
clear = ":"
subprocess.call(clear, shell=True)
sys.exit()