for i in `find . -print`
do
#  echo $i
  if [ -f $1/$i ] ; then
    cmp $i $1/$i
  else
     if [ -d $1/$i ] ; then
       echo "Directory $i exists in both places"
     else
       echo "This $i did not exist in both places"
     fi
  fi
done
