#!/bin/bash cd .. for fn in *.png *.jpg do convert -thumbnail '150x50>' $fn mini/$fn done # EOF