ok so now I can get all elements printed using

        my @ftapes = ( );
        my @ftapes = `evmvol -w label_state=3|grep barcode`;
 
                foreach $_  (@ftapes) {
                print $_ , "\n";
        }

so now I want to use multidimensional arrays using print $ftapes[0,1]
does print $ftapes [0,1] mean print element 0 and element 1 or address 0,1
am I confusing a normal array with a MDarray?

where 

[0] is a subscript address so to get the first element I would say print 
$ftapes [0]

thanks

Derek B. Smith
OhioHealth IT
UNIX / TSM / EDM Teams

Reply via email to