Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^5: Comparing MDB files.

by daxim (Curate)
on Jul 15, 2019 at 07:41 UTC ( [id://11102852]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Comparing MDB files.
in thread Comparing MDB files.

› perl -c pm-11102847.pl Global symbol "$co" requires explicit package name (did you forget to +declare "my $co"?) at pm-11102847.pl line 21.
You're making so many mistakes because you write so much code. Less code results in less bugs.

I would write no code at all and just use cmp from Gnu diffutils, but if you have to to do in Perl:

use File::Compare qw(compare); my $r = compare 'filename1', 'filename2'; if ($r == 0) { print 'same'; } elsif ($r == 1) { print 'different'; } else { die "error in comparison: $!"; }
… but if you have to to use non-core modules:
use Digest::MD5 qw(md5); use File::Slurper qw(read_binary); if (md5(read_binary('filename1')) eq md5(read_binary('filename2'))) { print 'same'; } else { print 'different'; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11102852]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-18 05:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found