RE: How to compile just the current perl module, ignoring all the other included modules

2012-01-27 Thread Nemana, Satya
Hi Timothy Thank you,(sounds like a silver bullet J ) will give it a try and post the results. Regards, Satya From: timothy adigun [mailto:2teezp...@gmail.com] Sent: 27 January 2012 16:46 To: Nemana, Satya Cc: Rob Dixon; beginners@perl.org Subject: Re: How to compile just the curre

Re: How to compile just the current perl module, ignoring all the other included modules

2012-01-27 Thread timothy adigun
what you want I mean! thanks On Fri, Jan 27, 2012 at 5:45 PM, timothy adigun <2teezp...@gmail.com> wrote: > Hi Satya, > > On Fri, Jan 27, 2012 at 5:29 PM, Nemana, Satya wrote: > >> Hi Rob >> >> All I got from this exercise is >> >> ./startAutomation syntax OK >> >> and a complete print of the sta

Re: How to compile just the current perl module, ignoring all the other included modules

2012-01-27 Thread timothy adigun
Hi Satya, On Fri, Jan 27, 2012 at 5:29 PM, Nemana, Satya wrote: > Hi Rob > > All I got from this exercise is > > ./startAutomation syntax OK > > and a complete print of the startAutomation perl file with the fully > qualified function names, all the variables used in the program at the > beginni

RE: How to compile just the current perl module, ignoring all the other included modules

2012-01-27 Thread Nemana, Satya
Hi Rob All I got from this exercise is ./startAutomation syntax OK and a complete print of the startAutomation perl file with the fully qualified function names, all the variables used in the program at the beginning of the program. From the time command output, as used in the command "time

Re: How to compile just the current perl module, ignoring all the other included modules

2012-01-27 Thread Rob Dixon
On 27/01/2012 12:58, Nemana, Satya wrote: Hi Shawn How do I use this option of -MO=Deparse when executing a perl script with an embedded #! Prompt? Our scripts start with the line #!/ats/bin/perl -w I tried adding the parameters here, but got the following errors Too late for "-MO=Deparse" op

RE: How to compile just the current perl module, ignoring all the other included modules

2012-01-27 Thread Nemana, Satya
Hi Shawn How do I use this option of -MO=Deparse when executing a perl script with an embedded #! Prompt? Our scripts start with the line #!/ats/bin/perl -w I tried adding the parameters here, but got the following errors Too late for "-MO=Deparse" option at ./startAutomation line 1. BEGIN { $^

Re: Dereferencing an array

2012-01-27 Thread Igor Dovgiy
Hi Rob, Just'd like to add my $0.02 to the brilliant solutions you offered. ) You can access the anonymous arrays from @desc using > > foreach my $rest (@desc) { >print "@$rest\n"; > } > > Or just... say "@$_" for @desc; ... if one prefers conciseness - and is able to use 5.010, of course

Re: Dereferencing an array

2012-01-27 Thread Rob Dixon
On 27/01/2012 10:14, Owen wrote: In the program below, I think I end up with an array of array references. But I can not get back the @rest from @desc where it is stored. Is it possible that @rest is just over written? Might have to think about doing something else. I can't use hashes as data

Dereferencing an array

2012-01-27 Thread Owen
In the program below, I think I end up with an array of array references. But I can not get back the @rest from @desc where it is stored. Is it possible that @rest is just over written? Might have to think about doing something else. I can't use hashes as data elements are sometimes duplicated.