Linux下递归删除 linux 2015-11-09 阅读(1807) find . -name "*.pyc" -exec rm {} \; #先查找,然后把查找的结果删除 {}:find查找结果 Tags: >linux