view bin/testcrc @ 692:a04ba615362c

[bashrc] back to prioritizing gnuls for openbsd It should be fixed by now...? Can't remember what the problem was though.
author nanaya <me@nanaya.pro>
date Sun, 23 Oct 2022 01:56:26 +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");
}