Help for this page

Select Code to Download


  1. or download this
    sub get_sensor_id($) {
      ...
    }
    
  2. or download this
    sub add_iLO3_data() {
        $_ = "Memory    (a whole buncha stuff)       ";
        chomp;
        ...
    }
    
  3. or download this
    sub add_iLO3_data {
        my $str = "Memory    (a whole buncha stuff)       ";
        ...
    }