Last Updated: February 25, 2016
·
785
· marchibbins

Recursively delete *.pyc, .DS_Store files, etc

From current working directory:

find . -name '*.pyc' -delete

Or likewise:

find /path/to/project/ -name '.DS_Store' -delete