in reply to Re^4: Calculating the crc checksum of a file using perl?
in thread Calculating the crc checksum of a file using perl?
#!/usr/bin/perl use strict; use warnings; use Compress::Zlib; my $file = '/usr/lib/somefile.txt'; print my $crc = crc32($file), "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Calculating the crc checksum of a file using perl?
by AGhoulDoingPerl (Sexton) on Jul 09, 2011 at 14:07 UTC | |
by Anonymous Monk on Jul 09, 2011 at 14:52 UTC | |
by AGhoulDoingPerl (Sexton) on Jul 09, 2011 at 16:49 UTC |