Simple: Find new files

From: gnubie (jim.brian_at_jpmchase.com)
Date: 11/10/05

  • Next message: Mike: "Re: Simple: Find new files"
    Date: 9 Nov 2005 15:22:35 -0800
    
    

    How can I create a find statement that looks for NEW files (say within
    a day or 2 old) on an AIX Unix drive ...

    find . -name "*.*" -mtime 2 ! -mtime 0 -print | tee
    ~/mystuff/test/output.txt

    Above is an example of some code that I found that is "supposed to"
    work. As best as I can tell... it doesn't select a thing!
    (I'm not sure about the use of this exclamation point[!] for creating a
    RANGE!)


  • Next message: Mike: "Re: Simple: Find new files"