#!/usr/bin/env ruby

require 'gdbm'

ARGV.each {|file|
	GDBM.open(file).each {|key, value|
		print "#{key}: <#{value}>\n"
	}
}

__END__

