Find Files With Permissions

Find all the files whose permissions are 777.

[source.sh]
----
find /usr -type f -perm 0777
----

Or Without 777 Permissions

[source.sh]
----
find /usr -type f ! -perm 0777 | head -5
----