Hi guys,
I have this ini file:
[performance]
pop1 = 192.168.1.1
pop2 = 192.168.1.2
[pop1]
2 = 123
2 = 345
4 = 125
[pop2]
6 = 503
10 = 444
and I do this:
sub mklist() {
my $config = "/home/portal/test/performance.conf";
my %ini;
tie %ini, 'Config::IniFiles', ( -file => $config);
push @hostnames, keys%{$ini{'performance'}};
push @ips, values%{$ini{'performance'}};
#print "Hosts: @hostnames\n\n";
#print "IPs: @ips\n\n";
for (my $i = 0; $i < @hostnames; $i++) {
push @slots, keys%{$ini{'$hostnames[$i]'}}; ## Here something
+is wrong...
push @ifindices, values%{$ini{'$hostnames[$i]'}};
}
print "Slots: @slots\n\n"; ## this prints nothing
print "Indices: @ifindices\n\n" ## this prints nothing as well...
}
what is wrong in my code and the arrays @slots & @ ifindices are empty??
thanks!
P.S. If I do this:
push @slots, keys%{$ini{'pop1'}};
I get: 2 4 instead of 2 2 4
Why?
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.