more simple rm pyc files command

This commit is contained in:
gruzovator
2016-04-19 11:55:48 +03:00
parent 4af285087d
commit f7f4728833
+1 -1
View File
@@ -224,7 +224,7 @@ Removing Bytecode (.pyc) Files
Here's nice trick for removing all of these files, if they already exist::
$ find . -name "*.pyc" -exec rm -rf {} \;
$ find . -name "*.pyc" -delete
Run that from the root directory of your project, and all ``.pyc`` files
will suddenly vanish. Much better.