#!/bin/sh
CONF=$(dirname $0)/mirror.conf

if [ -f $CONF ] ; then
  source $CONF
fi

for i in $EXCLUDE ; do
  j=`echo $i | sed "s/\.\*//g"`
  find $destdir -name "*$j*"
done


