in reply to Re: hash question
in thread hash question

I had attempted another try using
while (<$SN>) { next unless /^aixFsMountPoint|aixFsSize|aixFsFree/i; my(@tmp) = split("=", $_, 0); my ($id) = $tmp[0]; my ($fs) = $tmp[1]; $snmpo{$id} = $fs; }
But I like the regexp way better! thx!!!