view bin/cek.rb @ 472:4322b0a8a695

Use "old" commit identity for git.
author edogawaconan <me@myconan.net>
date Sun, 14 Jul 2013 02:04:45 +0900
parents 72c299437fde
children 324c5842af87
line wrap: on
line source

#!/usr/bin/env ruby
require 'zlib'

block = 1048576
ARGV.each do |filename|
	crc = 0
	file = File.open(filename, 'rb')
	currentbyte = 0
	while (line = file.read(block)) do
		crc = Zlib.crc32(line,crc)
	end
	file.close
	printf("%s %08X\n", filename, crc.to_i)
end