echo "}} Get list of all 'temporary' files in a root dir"

if test $# -ne 1
then
	echo "Usage: getalltmps <dir-root>"
	exit
fi

find $1 \( -name '*tmp' -o -name 'tmp*' -o -name '*.bu[0-9]*' -o -name *.out \
	-o -name *.OLD  \) \
	! -type d \
	-print >files.tmp
echo "} List file = files.tmp"
