Mercurial > ec-dotfiles
view bin/testcrc @ 641:84a1e86d1afc
[vimrc] Prevent pointer to stick at the bottom of screen
author | nanaya <me@nanaya.pro> |
---|---|
date | Mon, 08 Jun 2020 15:06:56 +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"); }