#!/bin/bash
# imagesize - displays image file information and dimensions using the
#    identify utility from ImageMagick

for name
do
  identify -format "%f: %G with %k colors.\n" "$name"
done
exit 0
