Is it possible for me to view all files on the server with a specific permission?
|
feedback
|
|
I believe: find / -type f -perm 0777 | |||||||||
feedback
|
|
I know the previous answer was accepted, but I wanted to post this "caveat administrator".
| |||
|
feedback
|
|
Your question is not clear. You say 'view', but I think you mean 'find'. Do you want to FIND all files with a specific permission? That would be something like: find . -type f -perm 777 This would find all files which were Readable, writable and executable by all users on the system. See some examples at http://linux.about.com/od/commands/l/blcmdl1_find.htm#examples | |||
|
feedback
|