Greeting,
In the infinite wisdom our company, without warning completely uninstalled
Active Perl on all of our Windows servers (I believe it was v5.8).. They
claimed it was a security risk, but I suspect new licensing fees were the
main incentive..
Regardless, I installed Strawberry Perl, 64 bit
Ok, I am trying to do something I initially thought would be fairly easy to
do but am running into lots of trouble.
I have a db2 instance running on a Windows 2k8r2 Enterprise server, using
ActivePerl V5.8..
I wanted to open a file handle in read/write mode to run cmd.exe.. I then
need to w
Subject: Re: reading a hash of arrays
On Wed, 19 Nov 2014 17:03:40 -0600
"Frank K." wrote:
> I can't do @array1 = @hash{one};
@array1 = @{ $hash{one} };
$hash{one} contains a reference to an array. By dereferencing it with @{ ...
}, you get the array.
--
Don't
Have a hash of arrays.. i.e.
$hash{one}[0] = "value 10";
$hash{one}[1] = "value 11";
$hash{one}[2] = "value 11";
$hash{one}[3] = "value 13";
$hash{one}[0] = "value 20";
$hash{one}[1] = "value 21";
$hash{one}[2] = "value 22";
$hash{one}[3] = "value 23";
If I had two arrays and wanted
Gosh, I always thought "$$" is what you have to pay when you get a divorce
.. flk k
-Original Message-
From: Dr.Ruud [mailto:rvtol+use...@isolution.nl]
Sent: Friday, May 17, 2013 7:47 AM
To: beginners@perl.org
Subject: Re: What does $$ mean ?
On 17/05/2013 14:39, *Shaji Kalidasan* wrote