Mercurial > ec-dotfiles
view bin/testcrc @ 555:48ab5a354772
Use vividchalk theme.
Seems to work better with 16 colors.
author | nanaya <me@myconan.net> |
---|---|
date | Sat, 25 Apr 2015 18:12:38 +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"); }