Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my %duplicates = ();
open (FH,'file.txt') or die "$!";
while (my $line = <FH>) {
chomp($line);
$duplicates{$line}++;
if ($duplicates{$line} > 1) {
print "This is a duplicate line: $line\n";
}
}