Re: [CentOS] Copying files from specific date.

2008-06-10 Thread MHR
IL PROTECTED] [mailto:[EMAIL PROTECTED] On >>> Behalf Of Steve Huff >>> Sent: Monday, June 09, 2008 7:34 PM >>> To: centos@centos.org >>> Subject: Re: [CentOS] Copying files from specific date. >>> >>> >>> On Jun 9, 2008, at 11:16 AM

Re: [CentOS] Copying files from specific date.

2008-06-10 Thread Peter Farrell
o: centos@centos.org >> Subject: Re: [CentOS] Copying files from specific date. >> >> >> On Jun 9, 2008, at 11:16 AM, Rajeev R. Veedu wrote: >> > Does anyone aware of any utility to copy files which are created >> > or modify form a specific date ?. >

RE: [CentOS] Copying files from specific date.

2008-06-09 Thread Bowie Bailey
Rajeev R. Veedu wrote: > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Steve Huff > Sent: Monday, June 09, 2008 7:34 PM > To: centos@centos.org > Subject: Re: [CentOS] Copying files from specific date. > > > On Jun 9,

RE: [CentOS] Copying files from specific date.

2008-06-09 Thread Rajeev R. Veedu
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Huff Sent: Monday, June 09, 2008 7:34 PM To: centos@centos.org Subject: Re: [CentOS] Copying files from specific date. On Jun 9, 2008, at 11:16 AM, Rajeev R. Veedu wrote: > Does anyone aware of

Re: [CentOS] Copying files from specific date.

2008-06-09 Thread Steve Huff
On Jun 9, 2008, at 11:16 AM, Rajeev R. Veedu wrote: Does anyone aware of any utility to copy files which are created or modify form a specific date ?. to copy all files in /dir1 modified within the last 5 days to /dir2: $ find /dir1 -mtime -5 | xargs -I {} cp {} /dir2 if the filenames ha

Re: [CentOS] Copying files from specific date.

2008-06-09 Thread Jim Perrin
On Mon, Jun 9, 2008 at 11:16 AM, Rajeev R. Veedu <[EMAIL PROTECTED]> wrote: > Dear all, > > > > Does anyone aware of any utility to copy files which are created or modify > form a specific date ?. Use find with either -exec or with xargs, and pass it either a -ctime or -mtime option for what you