OK, but you are still not trying to do what I suggested.
Minimize your code and create much smaller pieces of test code so you will be able to learn how to debug your own code.
I'll give you another example what I am talking about. In the next piece of text code I have found multiple problems, so play around with it a little bit and try to fix it yourself:
use strict;
use warnings;
use Data::Dumper;
my ($file_1, $file_2) = ('output1.csv', 'output2.csv');
open my $fh, '<', $file_1 or die "Can't open $file_1: $!";
my %first = map { chomp; split /\s*,\s*/ } <$fh>;
print Dumper( \%first ) ;
open $fh, '<', $file_2 or die "Can't open $file_2: $!";
my %second = map { chomp; (split /\s*,\s*/)[1,2] } <$fh>;
print Dumper( \%second ) ;
foreach my $name (sort keys %first) {
if (not exists $second{$name}) {
print "Devices should be added: $name\n";
next;
}
if ($first{$name} eq $second{$name}) {
print "Match found $name, $first{$name}\n";
} else {
print "UPDATE need be done for $second{$name}\n";
open ( my $input_1, '<', 'output1.csv' ) or die $!;
while ( <$input_1> ) {
chomp;
print " input_1 = $_\n" ;
my ($name_1, $ip_1) = split /,/;
print " (1) $name, $ip_1\n" ;
(my $id, $first{$name}, $second{$name}) = split /,/;
print " (2) $id, $first{$name}, $second{$name}\n" ;
}
}
}
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, 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, 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.
|
|