Re: how to find files that are generated on a particular date

2001-11-12 Thread DBarbour
ls -al |grep 'Nov 10' David A. Barbour Oracle DBA, OCP AISD 512-414-1002 Tatireddy, Shrinivas

RE: how to find files that are generated on a particular date

2001-11-12 Thread Michael Cupp, Jr.
This will only work for the working directory - to _find_ files (regardless of loc), use the find command - for help - man find M -Original Message- [EMAIL PROTECTED] Sent: Monday, November 12, 2001 11:50 AM To: Multiple recipients of list ORACLE-L ls -al |grep 'Nov 10' David A.

RE: how to find files that are generated on a particular date

2001-11-11 Thread Tatireddy, Shrinivas (MED, Keane)
sorry forgot to mention that it is Solaris. -Original Message- Sent: Monday, November 12, 2001 2:35 AM To: Multiple recipients of list ORACLE-L Hi lists does anybody can post me a command In unix how can I find files generated on a particulat date example files generated on Nov

RE: how to find files that are generated on a particular date

2001-11-11 Thread Jeroen van Sluisdam
Hi, Try something like (works on HP-UX, don't have Solaris here): find . -type f | grep Nov 10 . says current directory, use / for the root filesystem as origin Note 2 spaces between Nov and 10 Hth, Jeroen -Oorspronkelijk bericht- Van: Tatireddy, Shrinivas (MED, Keane)