Wes Owen wrote:
> 
> How can I get a list of all the files a user owns on my filesystem.  I
> would need the full path of each file...
> 
> example:
> 
> user owns files in their folder, /usr/local/src/1234/, and
> /var/spool/mail/username, /usr/local/I_have_no_idea
> 

I am sure this has been answered by now with the list so slow today but:

find / -user usernameOrUID 

should do the deal 

You can then pipe it into xargs and do what you will
something like:

find / -user usernameOrUID -type f |xargs rm -f
should get you close  

'info find' has some examples under common tasks

hope this helps

Bret


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to