#!/bin/bash
for i in `find` ; do
	if [ -f $i ]; then chmod 664 $i ; fi;
	if [ -d $i ]; then chmod 775 $i ; fi;
done

chmod 775 fixperms
