I'm looking for a Linux command to go through all the directories on my server and find all files with 777 permission. The output would be a list of all those files with full path.
|
feedback
|
migrated from stackoverflow.com Nov 16 '09 at 3:19
This question came from our site for professional and enthusiast programmers.
|
Just like your last question, use
| |||
|
feedback
|
|
it's as easy as:
if you only want to match files, use this instead:
| |||
|
feedback
|
|
And if you like to find all files without Permission 0777 then just enter a ! before the perm, e.g.
| |||
|
feedback
|
|
You can also change the permissions or ownership of all those files resulting from the
| ||||
|
feedback
|