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 08-31-2004
Ygor's Avatar
Ygor Ygor is offline Forum Staff  
Moderator
  
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,409
Try using...

find . -type f -name '*xyz*' -newer start.file ! -newer end.file -exec ls -ltr {} \+

Or...

find . -type f -name '*xyz*' -newer start.file ! -newer end.file -print | xargs ls -ltr

However, neither method is guaranteed to work for large numbers of matched files.