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 -->
  #5 (permalink)  
Old 09-02-2004
moxxx68's Avatar
moxxx68 moxxx68 is offline
Registered User
  
 

Join Date: Mar 2004
Posts: 301
Question could work!?

try !
find . -type f - ctime or (mtime) depending on what you're looking for ..
find . -type f - ctime +20 -name "*" -exec ls -alt {} \;
find . -type f -mtime -30 -name "*" -exec ls -alt {} \;
i believe there is also an atime.. (man find should tell which choice to make)..
moxxx68