Thanks everybody .
 
-ak
 
 
----- Original Message -----
Sent: Tuesday, March 25, 2003 11:59 AM
Subject: RE: find on unix

Changing 'find' to following would work:
 
 find . ! -newer oldfile -print
 
- Kirti
 
-----Original Message-----
From: Deshpande, Kirti
Sent: Tuesday, March 25, 2003 1:50 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: find on unix

Ignore that..
It will find newer files, not older files..
I misread the question.  Sorry..
 
- Kirti
-----Original Message-----
From: Deshpande, Kirti
Sent: Tuesday, March 25, 2003 1:39 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: find on unix

Create a 'flag' file with the 'particular' date as its last modified date:
 
     touch -t 200303201330.40 oldfile
 
The timestamp is of the format: YYYYMMDDHHMM.SS
 
Then use find command to find files newer (later) than oldfile.
 
    find . -newer oldfile -print
 
HTH,
 
- Kirti
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:39 AM
To: Multiple recipients of list ORACLE-L
Subject: find on unix

How to use "find" command on unix to find files older  then (created ) a particular date .
Any idea
 
-ak

Reply via email to