Re: [CentOS] Copying files from specific date.

2008-06-10 Thread Peter Farrell
That's an excellent idea. -pf 2008/6/9 Bowie Bailey [EMAIL PROTECTED]: 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

Re: [CentOS] Copying files from specific date.

2008-06-10 Thread MHR
: 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 any utility to copy files which are created or modify form a specific date ?. to copy all files in /dir1

[CentOS] Copying files from specific date.

2008-06-09 Thread Rajeev R. Veedu
Dear all, Does anyone aware of any utility to copy files which are created or modify form a specific date ?. Thanks Rajeev R. Veedu ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

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 need.

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

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 any

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, 2008, at 11:16 AM, Rajeev R. Veedu