added use command. added some functions to bashrc.

This commit is contained in:
utahta
2010-11-25 01:12:24 +09:00
parent 159d839803
commit 611b71d635
14 changed files with 258 additions and 93 deletions
+1 -1
View File
@@ -14,6 +14,6 @@ class CleanCommand(Command):
def _clean(self, root):
for dir in os.listdir(root):
rm_r("%s/%s" % (root, dir))
rm_r(os.path.join(root, dir))
CleanCommand()