Answers for "find and git delete all __pycache"

4

remove all pycache files

find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
Posted by: Guest on June-04-2020

Code answers related to "find and git delete all __pycache"

Python Answers by Framework

Browse Popular Code Answers by Language