I am trying to create a script that shows lines in one file that are in another file. Like this:
use strict;
use strict;
use warnings;
my %file2;
open my $file2, '<', '/tmp/dog.txt' or die "Couldn't open file2: $!";
while ( my $line = <$file2> ) {
++$file2{$line};
}
open my $file1, '<', '/tmp/cat.txt' or die "Couldn't open file1: $!";
while ( my $line = <$file1> ) {
print $line if $file2{$line};
}
dog.txt
ARF
police
set
cat.txt
meow
arf
police
The script correctly returns "police."
But the problem is that I have 50 files like this & I need to assign files to a variable so that it can compare one file to another. Does anyone know how to get multiple files in a script like this? so there may be horse.txt and lama.txt and camel.txt and tiger.txt and I want to check each file against dog.txt and cat.txt. Is this possible?
I would also like to know if part of a pattern can be compared -such as grep /poli/ - I have only been able to do it by line.
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.