#!/bin/sh
#
find . -type f -a '(' -name '*-' -o -name '*.bak' -o -name '*.out' ')' \
	-exec ls -lidg {} ';' \
	-exec rm -f {} ';'
