The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 05-15-2008
Danny.Chouinard Danny.Chouinard is offline
Registered User
 

Join Date: May 2008
Posts: 20
You can also tell find to find files that are newer than one file.
Code:
find . -type f -newer timestamped_file -print
will print all the files that were modified since the last time timestamped_file was modified.

man find reveals all.

Last edited by Yogesh Sawant; 05-16-2008 at 04:23 AM. Reason: added code tags
Reply With Quote