#!/bin/sh

PATH=/usr/bin:/bin
export PATH

find . \( -name \*.rdf -a ! -name Manifest.rdf -o -name \*.nt -o -name \*.nrdf -o -name \*.n3 \) -print | sed -e 's/^\.\///' | sort > complete_list
awk '!/^#/ && !/^\s*$/ { print $1 }' all_files | sort > accounted_for

# Find files that need an accounting...
fgrep -v -f accounted_for complete_list > resolve_status_of_these


