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
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
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
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
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
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 { $^
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
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
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.