search

Thursday, December 10, 2015

bash: How to remove all *.pyc files

Remove all *.pyc files from the current directory (and subdirectories):
find . -name \*.pyc -delete

No comments:

Post a Comment