Re: find files created/accessed in last n hours

2008-04-10 Thread Richard Lee
Randal L. Schwartz wrote: "Richard" == Richard Lee <[EMAIL PROTECTED]> writes: Richard> Just out of curiosity to all perl experts in here... Richard> how many times did you guys read entire perl FAQs ? Every time one of you says something that sounds like a FAQ. :-) But serious

Re: find files created/accessed in last n hours

2008-04-10 Thread Randal L. Schwartz
> "Richard" == Richard Lee <[EMAIL PROTECTED]> writes: Richard> Just out of curiosity to all perl experts in here... Richard> how many times did you guys read entire perl FAQs ? Every time one of you says something that sounds like a FAQ. :-) But seriously, I still skim the FAQ headlines a

Re: find files created/accessed in last n hours

2008-04-10 Thread Richard Lee
Chas. Owens wrote: On Thu, Apr 10, 2008 at 1:42 AM, nag <[EMAIL PROTECTED]> wrote: hi, please help me to get all the files present in a directory which are created/accessed in last 4 hours . snip Take a look at File::Find* and the stat function** or -M***. You may also want to read

Re: find files created/accessed in last n hours

2008-04-09 Thread Chas. Owens
On Thu, Apr 10, 2008 at 2:48 AM, nag <[EMAIL PROTECTED]> wrote: > can some one please give the exact code for this.. snip No, we can provide you with rate cards for contract work, or you can take a stab at reading the docs and throwing together a script. If you have specific questions about the l

Re: find files created/accessed in last n hours

2008-04-09 Thread nag
can some one please give the exact code for this.. thanks, Nagesh On Thu, Apr 10, 2008 at 11:31 AM, Gunnar Hjalmarsson <[EMAIL PROTECTED]> wrote: > nag wrote: > > > please help me to get all the files present in a directory which are > > created/accessed in last 4 hours . > > > >perldoc -f r

Re: find files created/accessed in last n hours

2008-04-09 Thread Gunnar Hjalmarsson
nag wrote: please help me to get all the files present in a directory which are created/accessed in last 4 hours . perldoc -f readdir perldoc -f grep perldoc -f -M -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contact.pl -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: find files created/accessed in last n hours

2008-04-09 Thread J. Peng
use File::Find can do that. or use the unix 'find' command: find /path -type f -mmin -240 On 4/10/08, nag <[EMAIL PROTECTED]> wrote: > hi, > please help me to get all the files present in a directory which are > created/accessed in last 4 hours . > > > thanks > Nagesh > > -- > Thanks > Nagesh >

Re: find files created/accessed in last n hours

2008-04-09 Thread Chas. Owens
On Thu, Apr 10, 2008 at 1:42 AM, nag <[EMAIL PROTECTED]> wrote: > hi, > please help me to get all the files present in a directory which are > created/accessed in last 4 hours . snip Take a look at File::Find* and the stat function** or -M***. You may also want to read perldoc -q "How do I get

find files created/accessed in last n hours

2008-04-09 Thread nag
hi, please help me to get all the files present in a directory which are created/accessed in last 4 hours . thanks Nagesh -- Thanks Nagesh