- or download this
push (@Mdevices, [$UnitID, $fileno]);
for ($k=0; $k<=$#Mdevices; $k++)
...
print $Mdevices[$k][0],"\n";
}
$k=0;
- or download this
my @Mdevices ;
my @Cdevices ;
...
push (@Mdevices, \@Cdevices);
} ;
- or download this
my @Mdevices ;
while (... something ...) {
...
push (@Mdevices, \@Cdevices);
} ;
- or download this
my @Mdevices ;
while (... something ...) {
...
push (@Mdevices, [$UnitID, $fileno]);
} ;