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
2012-02-29 12:00:10 -08:00

14 lines
231 B
Python
Executable file

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