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:
5
cleanup.sh
Executable file
5
cleanup.sh
Executable 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 '{}' ';'
|
||||||
Reference in New Issue
Block a user