view bin/testcrc @ 419:587abe573053

Added PATH for pgdg 9.2. Sure has been ages last time I tried that :/
author Edho Arief <edho@myconan.net>
date Tue, 11 Dec 2012 16:15:34 -0500
parents 5bafb912837e
children
line wrap: on
line source

#!/usr/bin/perl

use strict;
use warnings;
use String::CRC32;

my @files = @ARGV or print("Usage u fail") && exit(1);

foreach(@files) {
	my $filename = $_;
	open(FILE,$filename);
	my $crc=crc32(*FILE);
	close(FILE);
	$crc=sprintf("%X",$crc);
	print("$filename: $crc\n");
}