Fixed the code
%new_db = (1 , 'gedit-2.2.2-i386-1.tgz',
2 , 'ppp-3.4.1-i386-2.tgz');
new_packages($fcount,\%new_db);
sub new_packages {
my %packages =%{ $_[1]};
print "Found $_[0] packages for download: $_\n" if ($fcount > 1);
print "Found $_[0] package for download: $_\n" if ($fcount == 1);
print "Which one would you like to install?:\n";
foreach my $key (keys (%packages)) {
print "$key) $packages{$key} \n"
}
}
Note that I changed your passing of the hash to passing of a
reference to the hash and I de-reference it in the sub.
Otherwise it is just going to look like an array of scalars.
Peter L. Berghold | Brewer of Belgian Ales |
Peter@Berghold.Net | www.berghold.net |
Unix Professional |
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|