#!/bin/sh
find ./ -iname "*.pyc" -exec rm {} \;
find ./ -iname "*~"    -exec rm {} \;
find ./ -iname "*.bak"    -exec rm {} \;

