上QQ阅读APP看书,第一时间看更新
去QQ阅读APP
上一章
目录
下一章
How to do it...
Add this alias at the end of
.bash_profile
, as follows:
# ~/.bash_profile
alias delpyc='find . -name "*.pyc" -delete'
Now, to clean the Python-compiled files, go to your project directory and type the following command on the command line:
$ delpyc
上一章
目录
下一章