The UNIX and Linux Forums  

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
You can also use:

find . -name test -print.

You can use regular expressions with it as well. Example of a wildcard search:

find . -name *test* -print