#!/bin/sh
#
# Look for core dumps with various nameing conventions and
# list them.

#cd $HOME
echo Finding core files in `pwd` ...
find . -type f \
	\( -name core -o -name 'core.[0-9][0-9]*' -o -name '*.core' \)\
	-exec ls -lidg {} ';' 

