摘要: 删除当前目录下的所有__pycache__子目录 ```shell find . -name '__pycache__' -type d -exec rm -rf {} \; ``` 删除当前目录下所有.pyc文件 ```shell find . -name "*.pyc" | xargs rm - 阅读全文
posted @ 2023-05-11 14:25 liuyang9643 阅读(70) 评论(0) 推荐(0) 编辑