#!/bin/bash -noprofile
#
# Prints information about all the bitmaps in the current directory
#

suffix=".bmp"

file *$suffix | tee bmpinfo.log
