Guest_imported
New member
- Jan 1, 1970
- 0
I need to find all files with the name of the person who owns the file.
ls -l gives me:
-rw-r--r-- 1 smith mygroup 58 Dec 4 2001 zy
I want to get all files with the smith name:
find . \(grep smith\) -exec ls {}\;
This is not working. Any suggestions??
ls -l gives me:
-rw-r--r-- 1 smith mygroup 58 Dec 4 2001 zy
I want to get all files with the smith name:
find . \(grep smith\) -exec ls {}\;
This is not working. Any suggestions??