Help for this page

Select Code to Download


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