Help for this page

Select Code to Download


  1. or download this
    $_->dump_os for @agents;
    
    ...
              'AIX  4.3.3'
            ];
    # etc.
    
  2. or download this
    foreach (@agents) {
       $_->dump_os if grep /AIX/, @{$_->{os}};
    }