Hi out there,

is it possible to pass an array referenz 
by an environment variable to another perl script ?



no1.pl ------------------------

        my @Array=('A','B','C');
        $ENV{Array}=\@Array;
        `./no2.pl`;

no2.pl ------------------------

        foreach my $Part (\@{ENV{Array}}) {
                print "$Part\n";
        }



Thanx for any suggestions 

Patrik






 
FMS Internet Service
Friedrichring 8
D 79098 Freiburg
Tel.: +49 761 2926500
Fax: +49 761 2926503
http://www.fmsweb.de 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to