The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 08-22-2008
Mariognarly Mariognarly is offline
Registered User
  
 

Join Date: Aug 2008
Location: Calgary, Alberta, Canada.
Posts: 9
If you are on Solaris, you can use this:

find . -user username -print


This will display all the files in the current directory with the owner of "username". If you cant to find all the files in the system, you could change to the root dir and use that command.

Ex:

cd /
(type "pwd" to see if you are in the "root" directory, it should come up with just a "/")
find . -user username -print