view bin/testcrc @ 681:137b18a1898e

[cek.py] Python 3
author nanaya <me@nanaya.pro>
date Fri, 24 Jun 2022 15:14:54 +0900
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");
}