#!/bin/sh

if (test -z "$1")
then
  echo "utilisation : $0 [chemin]"
  exit 1
fi

for file in sbin/* doc/*/* inc/*/* src/*/* ChangeLog TODO
do
  diff $file $1/$file > /dev/null 2>&1
  if (test $? != 0)
  then
    echo $file
  fi
done

