| # Check entries that should be removed |
| for i in $(tail -n +12 00-INDEX |grep -E '^[a-zA-Z0-9]+'); do |
| # Check directory entries that should be added |
| for i in $(find . -maxdepth 1 -type d); do |
| new=$(echo $i|perl -ne 's,./(.*),$1/,; print $_') |
| if [ "$(grep -P "^$i" 00-INDEX)" == "" ]; then |
| # Check file entries that should be added |
| for i in $(find . -maxdepth 1 -type f); do |
| if [ "$i" != "./.gitignore" ]; then |
| new=$(echo $i|perl -ne 's,./(.*),$1,; print $_') |
| if [ "$(grep -P "^$i\$" 00-INDEX)" == "" ]; then |
| echo -e "Documentation/00-INDEX check results:\n" |
| if [ "$obsolete" != "" ]; then |
| echo -e "- Should remove those entries:\n\t$obsolete\n" |
| echo -e "- No obsolete entries\n" |
| if [ "$dir" != "" ]; then |
| echo -e "- Should document those directories:\n\t$dir\n" |
| echo -e "- No new directories to add\n" |
| if [ "$file" != "" ]; then |
| echo -e "- Should document those files:\n\t$file" |
| echo "- No new files to add" |