Limo has asked for the wisdom of the Perl Monks concerning the following question:
Printing passes up until either the point where I populate the hash or try to print each key/value. What am I doing wrong here? FWIW, I am using Cookbook, recipe 11.2, pg. 372, for example.sub processfile { my $script = "/export/home/limo/Perl/exfields.pl -e"; my ($file, $list) = @_; my %hash; my @list = (split /,/, $list); foreach my $arg(@list) { open(FILE, "$script $arg $file |") or die "System error: $!\n"; while (<FILE>) { chomp; # print "$_\n"; returns expected results my @array = split; # printing each array element also passes here $hash{$arg} = [@array]; push (@{ $hash{$arg} }, @array) unless /^\#|none|unkno/i; } } foreach my $keys( sort keys %hash) { print "@{ $hash{$keys} }\n"; # print statement here returns 1 "value "value" pair per key } close FILE; return %hash; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Making a Hash of Arrays
by chromatic (Archbishop) on Sep 22, 2000 at 22:55 UTC | |
by Limo (Scribe) on Sep 22, 2000 at 23:00 UTC | |
|
RE: Making a Hash of Arrays
by Adam (Vicar) on Sep 22, 2000 at 22:57 UTC | |
by Fastolfe (Vicar) on Sep 22, 2000 at 23:41 UTC | |
by japhy (Canon) on Sep 23, 2000 at 00:02 UTC | |
by Fastolfe (Vicar) on Sep 23, 2000 at 00:05 UTC | |
by Limo (Scribe) on Sep 23, 2000 at 00:25 UTC | |
by japhy (Canon) on Sep 23, 2000 at 00:42 UTC | |
by Adam (Vicar) on Sep 23, 2000 at 00:44 UTC |