1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 11:30:19 +01:00

* Simple script for removing of bytecode and temporary or backup files.

This commit is contained in:
2008-01-18 20:40:57 +00:00
parent 07857c060d
commit 2a1cb3c1ba

5
cleanup.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
# remove ~, pyc, pyo files from current directory
find . -name \*~ -exec rm '{}' ';'
find . -name \*pyc -exec rm '{}' ';'
find . -name \*pyo -exec rm '{}' ';'