echo "Files With 777 Permissions"
find / -type f -perm 0777
echo "Files without 777 Permissions"
find /usr -type f ! -perm 0777 | head -5