#!/bin/bash for file in *.png do convert -resize 200 "$file" thumb_"$file" done