#!/bin/sh

for FILE in "$@"
do
    #ls ${FILE}
    convert ${FILE} -resize 37.5% small_${FILE}
done
