Help for this page

Select Code to Download


  1. or download this
    100110000000....
    
  2. or download this
    @device1_status = qw (
      Enabled
    ...
      .
      .
    );
    
  3. or download this
    foreach my $index (0 .. $#bits) {
      print "$device1_status[$index]\n" if ( $bits[$index] );
    }
    
  4. or download this
    %status = {
      'dev1'  =>  [ qw( enabled
    ...
                        .
                        )  ],
    };