Is there a way to get List of Only those files in a filesystem which are modified on a specifict date?

2007-01-11 Thread VeeJay
Hi Is there a way to get List of Only those files in a filesystem which are modified on a specifict date? -- Thanks! BR / vj ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

Re: Is there a way to get List of Only those files in a filesystem which are modified on a specifict date?

2007-01-11 Thread Nikos Vassiliadis
On Thursday 11 January 2007 10:45, VeeJay wrote: Hi Is there a way to get List of Only those files in a filesystem which are modified on a specifict date? Yes, read find(1) man. In short: find ${DIRECTORY} -mtime 8 This will give you the files which were modified 8 days before in

Re: Is there a way to get List of Only those files in a filesystem which are modified on a specifict date?

2007-01-11 Thread George Vanev
Here is an example with todays date find / -exec stat -f %N %Sm -t %m-%d-%Y {} \; | grep 01-11-2007 | cut -d' ' -f1 On 1/11/07, VeeJay [EMAIL PROTECTED] wrote: Hi Is there a way to get List of Only those files in a filesystem which are modified on a specifict date? -- Thanks! BR / vj