This is a rough draft for the hash idea explained earlier. It is not debugged or tested for compilation, so feel free to fix any minor issues....
use warnings;
use strict;
my @first_list;
my @second_list;
my %first_lc;
my @second_lc;
open FIRST_LIST, "< first_list.txt" or print $! "\n";
@first_list=<FIRST_LIST>;
close (FIRST_LIST);
chomp (@first_list);
open SECOND_LIST, "< second_list.txt" or print $! "\n";
@second_list=<SECOND_LIST>;
close (SECOND_LIST);
chomp (@second_list);
# create look up of machines in lower case
my %first_lc = map { lc => 1 } @first_list;
# not stricty necessary could use map in loop
my @second_lc = map { lc } @second_list;
print "Machines extra in second list\n\n";
foreach my $unique (@second_lc)
{
if (exists $first_lc{$unique})
{
print "already there $unique\n\n";
} else {
print "newly in this $unique\n\n";
}
}
A Monk aims to give answers to those who have none, and to learn from those who know more.
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.