Hi Monks,
Would like to know how to create hashes dynamically...here's what i have:
#!/usr/bin/perl
my %hash_mnt=();
@Mounts= `mount`;
$count=0;
foreach $mount(@Mounts){
$count++;
print "$count\n";
($mnt_key,$mnt_val,$mnt_acc)=(split(/\s+/,$mount))[2,0,6];
+ <li> I want to
+ create a hash here </li>
<li> multidimensional hash with mnt_key as key and mnt_val and mnt_acc
+ as values</li>
}
I tried :
#!/usr/bin/perl
my %hash_mnt=();
@Mounts= `mount`;
foreach $mount(@Mounts){
($mnt_key,$mnt_val,$mnt_acc)=(split(/\s+/,$mount))[2,0,6];
push( @{$hash_mnt{$mnt_key}[0]}, $mnt_val );
push( @{$hash_mnt{$mnt_key}[1]}, $mnt_acc);
+
}
But this isnt working
Am i missing something???
Thanks
Shamala
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.