Hi Monks,
I have a question. I am having a hard time understanding how hashes work, an example of the code below demonstrates what I am trying to accomplish. I am wondering howto take multiple comma delimited files (/etc/passwd) and take the unique ids(which is already present in another file) off of each file and push pop whatever them to append to a different file that already has the same ids present. Basically I have another file with the unique ids present already and from the /etc/passwd, named passwd.(server) files i want to list every passwd.server file that these unique ids from the existing file are on. What i want to know about the code below is line by line what is it doing? Thanks.
#!/usr/bin/perl -w
use strict;
my %USERS;
foreach my $file (<passwd.*>) {
open(PASSWD,$file);
my $strip=$file;
$strip =~ s/passwd\.//;
while(<PASSWD>) {
my($login,$gcos) = (split(':',$_))[0,4];
if(exists $USERS{$login}) {
push(@{$USERS{$login}},$strip);
} else {
$USERS{$login} = [$gcos,$strip];
}
}
close(PASSWD);
}
open(NEWFILE,">endstrx") || print "Can't open servup: $!\n";
foreach my $login (sort keys %USERS) {
print NEWFILE "$login:".shift(@{$USERS{$login}}).":";
print NEWFILE join(':',@{$USERS{$login}})."\n";
}
close(NEWFILE);
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.