% find . -name \*.o -perm 664 -print
To see if you have any directories with write permission for
everyone, use this:
% find . -type d -perm 777 -print
The previous examples only match an exact combination of permissions.
If you wanted to find all directories with group write permission,
you want to match the pattern ----w----. There are
several combinations that can match. You could list each combination,
but find allows you to specify a pattern that
can be bitwise ANDed with the permissions of the file. Simply put a
minus sign (-) before the octal value. The group
write permission bit is octal 20, so the following negative value:
% find . -perm -20 -print
will match the following common permissions:
If you wanted to look for files that the owner can execute (i.e.,
shell scripts or programs), you want to match the pattern
--x------ by typing: