Dienstag, 30. November 2010

Python / Django remove *.pyc files

User this to remove recursively all pyc files from the current directory

find . -type f -name "*.pyc" -exec rm -f {} \;

Keine Kommentare:

Kommentar veröffentlichen