Answers for "remove all pyc files from directory"

2

remove all pyc files

find . -name "*.pyc" -exec rm -f {} \;
Posted by: Guest on February-25-2021

Code answers related to "remove all pyc files from directory"

Python Answers by Framework

Browse Popular Code Answers by Language