![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hash Question in Perl | deadletter | Shell Programming and Scripting | 6 | 07-17-2008 06:07 PM |
| Perl Hash | Harikrishna | Shell Programming and Scripting | 1 | 06-04-2008 08:03 AM |
| Perl Hash | Harikrishna | Shell Programming and Scripting | 1 | 06-03-2008 12:45 AM |
| Hash in perl | Harikrishna | Shell Programming and Scripting | 1 | 06-02-2008 05:00 AM |
| perl array question from going through hash | hankooknara | Shell Programming and Scripting | 2 | 07-29-2007 10:53 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
perl hash question
Below is one article I was reading and I don't understand the Code:
$seen{$_} = 1
Can someone explain this in easier terms plesae? ____________________________________________________________ We can also take advantage of the uniqueness property of hash keys to filter out duplicates from a list. For example, suppose we need to examine lines of a file, generating an output that consists of only one line even if the line is duplicated. Easy enough: Code:
%seen = ();
while (<>) {
$seen{$_} = 1;
}
foreach (sort keys %seen) {
print;
}
|
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|