删除当前目录下的所有__pycache__子目录

liuyang9643 / 2023-05-11 / 原文

find . -name '__pycache__' -type d -exec rm -rf {} \;