Re: Finding files less then 31 days old?

2002-01-31 Thread Dave Reed
From: JW [EMAIL PROTECTED] At 08:31 PM 1/30/2002 -0600, you wrote: I'm trying to get a list of files 30 day sold or younger. I thought the following would to the trick: find . -type f -mtime 30 -ls But that only prints files that are exactly 30 days old. How do I do that and

Finding files less then 31 days old?

2002-01-30 Thread JW
Hey, I'm trying to get a list of files 30 day sold or younger. I thought the following would to the trick: find . -type f -mtime 30 -ls But that only prints files that are exactly 30 days old. How do I do that and younger part? Less then 31 days would be a suitable substitute too.

Re: Finding files less then 31 days old?

2002-01-30 Thread Brian Ashe
JW, On Wednesday 30 January 2002 07:57, you said something about: Hey, I'm trying to get a list of files 30 day sold or younger. I thought the following would to the trick: find . -type f -mtime 30 -ls But that only prints files that are exactly 30 days old. How do I do that and younger

Re: Finding files less then 31 days old?

2002-01-30 Thread JW
FYI I figure it out, the following worked: find /log/ -type f -mtime +30 -name *log.gz -exec cp -p {} . \; Sorry to bother everyone. At 06:57 PM 1/30/2002 -0600, you wrote: Hey, I'm trying to get a list of files 30 day sold or younger. I thought the following would to the trick: find .

Re: Finding files less then 31 days old?

2002-01-30 Thread Vidiot
I'm trying to get a list of files 30 day sold or younger. I thought the following would to the trick: find . -type f -mtime 30 -ls But that only prints files that are exactly 30 days old. How do I do that and younger part? Less then 31 days would be a suitable substitute too. Jonathan

Re: Finding files less then 31 days old?

2002-01-30 Thread JW
At 08:31 PM 1/30/2002 -0600, you wrote: I'm trying to get a list of files 30 day sold or younger. I thought the following would to the trick: find . -type f -mtime 30 -ls But that only prints files that are exactly 30 days old. How do I do that and younger part? Less then 31 days would be