how to know latest file creation on a partition

2001-06-27 Thread Seema Singh
Hi How to know the latest file generated in single partition? Suppose /root is one partition. I want to know what are the files generated since 50 days.IS there any command to know? Thanks -Seema _ Get your FREE download of MSN

RE: how to know latest file creation on a partition

2001-06-27 Thread Tirumala, Surendra
Try this: find /root -mtime -50 -print fyi, this gives the files that have been created/modified in last 50 days. -Original Message- Sent: Wednesday, June 27, 2001 11:41 AM To: Multiple recipients of list ORACLE-L Hi How to know the latest file generated in single partition? Suppose

RE: how to know latest file creation on a partition

2001-06-27 Thread Kevin Lange
One easy way is the touch and the find command 1. Touch a file with the date you want to search from. touch -t date_time file_name where date_time is in the form of mmddhhmi.ss and file_name is the name of a temp file to use on the search. I

RE: how to know latest file creation on a partition

2001-06-27 Thread Deshpande, Kirti
to know latest file creation on a partition Hi How to know the latest file generated in single partition? Suppose /root is one partition. I want to know what are the files generated since 50 days.IS there any command to know? Thanks -Seema