Answers:
如果您找到了GNU,那么您可能想要
find <directory name> -name '*.pyc' -delete
如果您需要便携式的东西,那么最好选择
find <directory name> -name '*.pyc' -exec rm {} \;
如果速度很重要,并且您有GNU查找和GNU xargs,那么
find <directory name> -name '*.pyc' -print0|xargs -0 -p <some number greater than 1> rm
但是,由于您将主要在等待I / O,因此这不太可能使您获得很大的速度。
使用命令查找:
find /path/to/start -name '*.pyc' -exec rm -f {} \;
\;
请将末尾的“ +
” 更改为“ ”。
cd到目录树的开头,然后:
找 。名称'* .pyc'| xargs rm -f
cd
,只需将顶层目录放在find
命令中(代替“点”)。