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 -->
  #2 (permalink)  
Old 10-25-2006
Corona688 Corona688 is offline
Registered User
  
 

Join Date: Aug 2005
Location: Saskatchewan
Posts: 1,972
The -name option specifies the filename, not the path.

If there's a small number of them you can do this with shell globbing:
Code:
ls 2006*/ftp_server*

Otherwise, you might do this with find and grep:

Code:
 find . -iname 'ftp_server*' | grep 2006