#!/bin/sh
#
# runs `find' for now.  Have to come up with something more portable
# (gfind isn't installed as gfind under linux)
#
cd $HOME

find . \( -name '.*~' -o -name '*~' -o -name '#*' -o -name '.#*' -o -name '*core' \) -print

