#!/bin/sh
find . \( -name '*%' -o -name '*.bak' -o -name '*.orig' -o -name '*.old' \) -ls -exec rm -f {} \;
