Mercurial > ec-dotfiles
view bin/testcrc @ 725:0a896ffe3029
Switch to tgz
bsdunzip doesn't seem to unzip from stdin.
author | nanaya <me@nanaya.net> |
---|---|
date | Mon, 19 Aug 2024 17:03:52 +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"); }