Wes,

> 
> 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...
> 

To get a list of all files owned by root (uid 0)

        find / -uid 0 -type f

when you're sure the list is sane, pipe to 'xargs rm'.

-- 
\Peter.


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

Reply via email to