シェルだったら
find . -name '*~' -print | xargs rm
に適当なaliasきっとけばいいんだけど、pythonで。
import os import re end_with_childe = re.compile('.*~$') for root, dir, files in os.walk('.'): for file in files: if end_with_childe.match(file): os.remove(os.path.join(root, file))