Text only
|
Text with Images
Developers Heaven Forum
Operating Systems => Lunix & Unix => Topic started by: admin on March 12, 2011, 05:49:13 AM
Title:
Find all 777 directories
Post by:
admin
on
March 12, 2011, 05:49:13 AM
To find all folders that any user can read and write to, i.e the folders with permission 777, you can use the following commaned:
Code
Select
Expand
find /home/ -type d -perm 777
Text only
|
Text with Images