Quantcast
Channel: Find all files on server with 777 permissions - Super User
Browsing latest articles
Browse All 5 View Live

Answer by Jorge V. for Find all files on server with 777 permissions

You can also change the permissions or ownership of all those files resulting from the find execution using the -exec option to avoid change them manually.Example: In a web server you could need to...

View Article



Answer by Kai for Find all files on server with 777 permissions

And if you like to find all files without Permission 0777 then just enter a ! before the perm, e.g. find / -type f ! -perm 0777

View Article

Answer by jheddings for Find all files on server with 777 permissions

Use find:find / -type f -perm 0777

View Article

Answer by knittl for Find all files on server with 777 permissions

it's as easy as:find / -perm 0777if you only want to match files, use this instead:find / -type f -perm 0777

View Article

Find all files on server with 777 permissions

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.

View Article

Browsing latest articles
Browse All 5 View Live


Latest Images