Re: passing array reference from one perl script to another perl scirpt

2008-01-28 Thread praveen mall
to handle. But, gdbm files have their own disadvantages when you > keep on adding and deleting the data. > > Try this out. This might help. > > ~Ajay > > -Original Message- > From: Chas. Owens [mailto:[EMAIL PROTECTED] > Sent: Friday, January 25, 2008 6:32 PM >

Re: passing array reference from one perl script to another perl scirpt

2008-01-28 Thread praveen mall
I am just putting the code here that might be helpful to others. Thank you very much. Praveen Mall Program1: (sending hash reference) use strict; use warnings; use Storable; my %h = (a => 1, b => 2, c => 3); store(\%h, "c:\\perlipc.$$") or die "could not st

Re: passing array reference from one perl script to another perl scirpt

2008-01-25 Thread praveen mall
call by passing hash reference as a parameter. If anyone has solution of this then please let me know. Thanks, Praveen Mall On Jan 25, 2008 12:11 AM, Chas. Owens <[EMAIL PROTECTED]> wrote: > On Jan 24, 2008 6:06 AM, <[EMAIL PROTECTED]> wrote: > snip > > > What you a