![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Security Anything involving computer security goes here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| listing sequential files as one group... | kentm | UNIX for Advanced & Expert Users | 1 | 01-24-2007 02:11 PM |
| find file with date and recursive search for a text | rosh0623 | UNIX for Advanced & Expert Users | 10 | 08-16-2006 11:27 AM |
| Recursive Search and replace only when found string | umen | Shell Programming and Scripting | 1 | 05-07-2006 10:20 AM |
| group by in files :-) | hellsd | UNIX for Dummies Questions & Answers | 10 | 06-22-2005 08:47 AM |
| recursive copy of hidden files | usfrog | UNIX for Advanced & Expert Users | 2 | 02-19-2002 11:16 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Recursive search for group or other writeable 'dot' files
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? |
| Forum Sponsor | ||
|
|
|
|||
|
thanks
For shame??
Man pages are a great resource, but they aren't the end all/be all. Not all man pages are alike and the ones that I looked at did not have this example. I checked again, just to be certain. I will certainly try what you mentioned and report back what happens. - again thanks for the suggestion. |
|
|||
|
Hi,
This is pretty simple to search recursively. This can be done in three ways. 1. ls -R this command work beautifully ,but not all version of ls have -R option. 2. find . ~print should work everywhere 3. du ~a . shows both name and size of the file. So tryout this command, By................. |
|
|||
|
Didn't work
"find . -type f -name ".*" -perm /-g+w,u+w"
No shame here. This did not work. However by putting the syntax that I needed, I was able to get what was necessary by using the -perm flag. |
|||
| Google The UNIX and Linux Forums |