Re: reading directories using perl in windows

2016-03-01 Thread Akshay Mohit
Could you please send the exact error which you are getting as I Copy/Pasted the exact code which you had given and it is working properly for me. I have only given the directory which is present in my system. use strict; use warnings; my $dir = "C:/Python_Exercise/*"; my @files = glob( $dir );

Re: Threads in Perl

2015-07-06 Thread Akshay Mohit
concepts of Perl. So, could you pls suggest me some study materials/links for the same. -Akshay On Tue, Jul 7, 2015 at 9:55 AM, Kent Fredric wrote: > On 7 July 2015 at 16:14, Akshay Mohit wrote: > > I need to maintain a code for performance testing which is fully written > > using Thr

Re: Threads in Perl

2015-07-06 Thread Akshay Mohit
Thanks Kent for the Quick reply. I need to maintain a code for performance testing which is fully written using Threads and I have no clue of the concepts so I wanted some stuffs for it. -Akshay On Tue, Jul 7, 2015 at 9:34 AM, Kent Fredric wrote: > On 7 July 2015 at 15:57, Akshay Mohit wr

Threads in Perl

2015-07-06 Thread Akshay Mohit
Hi, I am not so experienced in Perl and got a task to do in Threads. Can anyone pls help me in knowing the Thread concepts in Perl so I can apply it for my task. Thanks in advance.! -Akshay

Re: want to access single value in a hash

2015-06-18 Thread Akshay Mohit
Try this:- print "$cmd_param_show->{'scsitrace_start_log_to_disk_true'}->{'param_val'}->{'log-to-disk'}\n"; -Akshay On Thu, Jun 18, 2015 at 2:35 PM, Sunita Pradhan < sunita.pradhan.2...@hotmail.com> wrote: > I have following data structure : > > my $cmd_param_show = {'scsitrace_start_log_to_disk

Re: Regular Expression Help.

2015-03-24 Thread Akshay Mohit
Just start using it and you will find it very easy to understand. -Akshay On Wed, Mar 25, 2015 at 10:31 AM, Frank Vino wrote: > Hi Team, > > How to understand Regular Expression in a easy way? > > Thanks, > Frank >