Answers for "remove pyc files"

1

remocve pyc files

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

remove all pyc files

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

Python Answers by Framework

Browse Popular Code Answers by Language