HoH and HoHoH

2007-01-12 Thread oryann9
'} = $uid; $hash1{$name} - {'gid'} = $gid; $hash1{$name} - {'gecos'} = $gecos; HoHoH -- $VAR1 = { 'jblow' = { '2195' = { 'gecos' = 'Joe Blow,,,', 'gid' = '20

HoH and HoHoH

2007-01-11 Thread oryann9
'} = $uid; $hash1{$name} - {'gid'} = $gid; $hash1{$name} - {'gecos'} = $gecos; HoHoH -- $VAR1 = { 'jblow' = { '2195' = { 'gecos' = 'Joe Blow,,,', 'gid' = '20

HoH and HoHoH

2007-01-11 Thread oryann9
'} = $uid; $hash1{$name} - {'gid'} = $gid; $hash1{$name} - {'gecos'} = $gecos; HoHoH -- $VAR1 = { 'jblow' = { '2195' = { 'gecos' = 'Joe Blow,,,', 'gid' = '20

HoHoH

2007-01-09 Thread oryann9
I have a HoHoH structure that looks like after running print Dumper (\%hash); 'prlhNSSA' = { '1499' = { 'gecos' = 'First Name Last Name,CIS,location, 'host' = '/var/tmp

Re: HoHoH

2007-01-09 Thread Dave Gray
On 1/9/07, oryann9 [EMAIL PROTECTED] wrote: I have a HoHoH structure that looks like after running print Dumper (\%hash); 'prlhNSSA' = { '1499' = { 'gecos' = 'First Name Last Name,CIS,location

Re: HoHoH

2007-01-09 Thread John W. Krahn
oryann9 wrote: I have a HoHoH structure that looks like after running print Dumper (\%hash); 'prlhNSSA' = { '1499' = { 'gecos' = 'First Name Last Name,CIS,location, 'host' = '/var/tmp/passwd.tgpdrpp1.hpux', 'gid' = '205

Re: HoHoH

2007-01-09 Thread oryann9
my question is how do I access and print all values? I am trying: foreach (keys %dub_hash) { print %{$dub_hash-{$name}-{$uid}-{%gid}-{$gecos} }; } Do I need three loops? What am I doing wrong? Yup, three loops. I'll get you started: for my $name (keys %dub_hash) { for my $uid (keys

Re: HoHoH

2007-01-09 Thread John W. Krahn
Dave Gray wrote: Yup, three loops. I'll get you started: for my $name (keys %dub_hash) { for my $uid (keys %{$dub_hash{$name}}) { # do stuff, note the %{...} above to force precedence Parentheses () are used for precedence, %{} dereferences the reference contained in

Re: Sorting on HoHoH

2006-09-08 Thread Hardly Armchair
John W. Krahn wrote: Hardly Armchair wrote: Hello List, Hello, I have a data structure like so: %p_mod = { ^ You are using the wrong punctuation. That would produce a warning if you had warnings enabled. Sorry. I'm actually generating this data structure dynamically and

Re: Sorting on HoHoH

2006-09-08 Thread Rob Dixon
Hardly Armchair wrote: Hello List, I have a data structure like so: %p_mod = { 'A' = { 'fingers' = { '4' = 'ABSFMQS', '5' = 'SMTFQNL', }, 'name'

Sorting on HoHoH

2006-09-07 Thread Hardly Armchair
Hello List, I have a data structure like so: %p_mod = { 'A' = { 'fingers' = { '4' = 'ABSFMQS', '5' = 'SMTFQNL', }, 'name'= '8-H34' },

Re: Sorting on HoHoH

2006-09-07 Thread John W. Krahn
Hardly Armchair wrote: Hello List, Hello, I have a data structure like so: %p_mod = { ^ You are using the wrong punctuation. That would produce a warning if you had warnings enabled. 'A' = { 'fingers' = { '4' =