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 -->
  #5 (permalink)  
Old 05-25-2006
slink slink is offline
Registered User
  
 

Join Date: May 2006
Posts: 3
Yes, if I want to search files modified 5 days ago in my computer I type:


Code:
find / -mtime 5 2>/dev/null

the 2>/dev/null is just to prevent output about "Permission denied" directories

But, what if I want to search for files modified on 01-01-1999 ?