#!/bin/sh

for file in `find . -type f -a \( -name "*.py" -o -name "*.sh" -o -name "*.c"   -o -name "*.h" -o -name "*.cc" -o -name "*.hh" \) ` ; do
	 [ -z "`grep -i copyright $file`" ] && echo $file
done 

exit 0
