Can someone tell me what's wrong here?
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;
}
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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.