find /home/ -perm 777 -type f This command will list all the files inside the home directory that has 777 permissions.
Read moreWhat does chmod 654 mean?
So 654 would mean read and write for owner, read and execute for group and only read for everyone else .
Read moreWhat is 775 chmod?
The chmod 775 is an essential command that assigns read, write, and execute permission to a specific user, group, or others .
Read moreHow do you find files that have specific permissions Linux?
How to View Check Permissions in Linux
Read moreWhat is meant by chmod 755?
755 means read and execute access for everyone and also write access for the owner of the file . When you perform chmod 755 filename command you allow everyone to read and execute the file, the owner is allowed to write to the file as well.
Read moreWhat is 644 permission Unix?
Permissions of 644 mean that the owner of the file has read and write access, while the group members and other users on the system only have read access . For executable files, the equivalent settings would be 700 and 755 which correspond to 600 and 644 except with execution permission.
Read moreWhat are the 3 permissions in Linux?
Nine characters denotes the three types of permissions.
Read more