dbs has asked for the wisdom of the Perl Monks concerning the following question:
Dumper outputs some undef entries. thanks!!!#!/usr/bin/env perl use strict; use warnings; while (<DATA>) { next unless /^aixFsMountPoint|aixFsSize|aixFsFree/i; if ( /aixFsMount.*/i ) { push @mt, $_; } if ( /aixFsFree.*/i ) { push @free, $_ } if ( /aixFsSize.*/i ) { push @sz, $_; } } @snmpo{ @mt, @sz } = @free; print "\n",Dumper \%snmpo,"\n"; __DATA__ actual STDOUT: aixFsMountPoint.1 = "/" aixFsMountPoint.2 = "/usr" aixFsMountPoint.3 = "/var" aixFsMountPoint.4 = "/tmp" aixFsMountPoint.5 = "/local.home" aixFsMountPoint.6 = "/admin" aixFsMountPoint.7 = "/proc" aixFsMountPoint.8 = "/opt" aixFsMountPoint.9 = "/var/adm/ras/livedump" aixFsMountPoint.10 = "/net" aixFsMountPoint.11 = "/net/nim01at/opt/CBC-CFG" aixFsMountPoint.12 = "/net/nim01at/opt/CBC-CFG" aixFsSize.1 = 3072 aixFsSize.2 = 8512 aixFsSize.3 = 10240 aixFsSize.4 = 4096 aixFsSize.5 = 64 aixFsSize.6 = 128 aixFsSize.7 = 0 aixFsSize.8 = 4096 aixFsSize.9 = 3072 aixFsSize.10 = 0 aixFsSize.11 = 7168 aixFsSize.12 = 7168 aixFsFree.1 = 2631 aixFsFree.2 = 3232 aixFsFree.3 = 2373 aixFsFree.4 = 1923 aixFsFree.5 = 46 aixFsFree.6 = 127 aixFsFree.7 = 0 aixFsFree.8 = 3000 aixFsFree.9 = 3071 aixFsFree.10 = 0 aixFsFree.11 = 3463 aixFsFree.12 = 3463
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: hash question
by toolic (Bishop) on Aug 23, 2011 at 19:47 UTC | |
by CountZero (Bishop) on Aug 23, 2011 at 21:59 UTC | |
by toolic (Bishop) on Aug 24, 2011 at 00:23 UTC | |
by Jim (Curate) on Aug 23, 2011 at 21:05 UTC | |
by dbs (Sexton) on Aug 23, 2011 at 20:07 UTC | |
|
Re: hash question
by roboticus (Chancellor) on Aug 23, 2011 at 19:36 UTC | |
|
Re: hash question
by CountZero (Bishop) on Aug 23, 2011 at 21:52 UTC |