使用find,rm清除python字节码文件
Hujiuxiang
・1 分钟阅读
清除python字节码文件
find . -name"*.py[co]" -exec rm -f {} ;
此命令将清除当前目录下python模块的所有字节码版本。