echo "}} Get all 'temporary' cdwaf files."
if test $# -ne 1
then
	echo "Usage: gettmps <dir-root>"
	abort
fi

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