view bin/testcrc @ 684:6010e722b5da

[irbrc] Disable syntax highlighting as it slows down things Reference: https://github.com/ruby/irb/issues/292
author nanaya <me@nanaya.pro>
date Wed, 14 Sep 2022 19:06:13 +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");
}