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 -->
  #2 (permalink)  
Old 12-19-2004
gull04 gull04 is offline
Registered User
  
 

Join Date: Dec 2004
Location: Isle-of-Skye
Posts: 9
Hi,

Quickest way is as follows for solaris;

find ./ -print | grep -i "filename"

to find directories only try:-

find ./ -type d -name XXX -print ( where XXX is the name of the directory)

Rgds

Dave