#!/bin/sh

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

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

