Remove All .pyc Files
Found a cool bash command to remove all the .pyc files from a project folder.
find . -name '*.pyc' -delete
I turned it into a bash alias in my ~/.bash_profile.
alias pyclean="find . -name '*.pyc' -delete"
Found a cool bash command to remove all the .pyc files from a project folder.
find . -name '*.pyc' -delete
I turned it into a bash alias in my ~/.bash_profile.
alias pyclean="find . -name '*.pyc' -delete"