The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Special Forums > Security
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 02-13-2008
HPAVC's Avatar
HPAVC HPAVC is offline
Registered User
 

Join Date: Feb 2008
Posts: 105
Quote:
Originally Posted by maficdan View Post
I'm looking for a easy way to do a recursive search through a directory structure for all files that begin with '.' that are group or other writable. Any suggestions?
For shame, that is actually in the "find" man-page EXAMPLES section.

Code:
find . -type f -name ".*" -perm /-g+w,u+w
Reply With Quote