RE: find on unix

2003-03-25 Thread Nelson, Allan
Title: Message assume you want to find files created more than 3 days ago. find /my_dir -mtime +3 -print Allan -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 10:39 AMTo: Multiple recipients of list ORACLE-LSubject:

RE: find on unix

2003-03-25 Thread Bonnie Finke
finddirectory -print -mtime +60 (files older than 60 days) -Original Message-From: AK [mailto:[EMAIL PROTECTED]Sent: Tuesday, March 25, 2003 10:39 AMTo: Multiple recipients of list ORACLE-LSubject: find on unix How to use "find" command on unix to find files older then

Re: find on unix

2003-03-25 Thread Ron Rogers
man find from the command line. Unix for Oracle DBA's O'Reilly publishing. Unix system users manual. Ask the sysadmin- Bribe with hardware!. Ron [EMAIL PROTECTED] 03/25/03 11:39AM How to use find command on unix to find files older then (created ) a particular date . Any idea -ak --

RE: find on unix

2003-03-25 Thread Deshpande, Kirti
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 PMTo: '[EMAIL PROTECTED]'Cc: '[EMAIL PROTECTED]'Subject: RE: find on unix Create a 'flag

RE: find on unix

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

RE: find on unix

2003-03-25 Thread Deshpande, Kirti
Create a 'flag' filewiththe 'particular'date as its last modified date: touch -t 200303201330.40 oldfile The timestamp is of the format:MMDDHHMM.SS Then use find command to find files newer (later) than oldfile. find . -newer oldfile -print HTH, - Kirti -Original

RE: find on unix

2003-03-25 Thread Gogala, Mladen
alias RTFM="man" RTFM find. -Original Message-From: AK [mailto:[EMAIL PROTECTED]Sent: Tuesday, March 25, 2003 11:39 AMTo: Multiple recipients of list ORACLE-LSubject: find on unix How to use "find" command on unix to find files older then (created ) a particular date

Re: find on unix

2003-03-25 Thread AK
Thanks everybody . -ak - Original Message - From: Deshpande, Kirti To: Multiple recipients of list ORACLE-L Sent: Tuesday, March 25, 2003 11:59 AM Subject: RE: find on unix Changing 'find' to following would work: find . ! -newer oldfile -print

RE: find on unix

2003-03-25 Thread Trevor . Williams
but find . ! -newer ... will find the older ones -Original Message- Sent: Wednesday, 26 March 2003 3:50 am To: Multiple recipients of list ORACLE-L Ignore that.. It will find newer files, not older files.. I misread the question. Sorry.. - Kirti -Original Message- Sent: