#!/bin/csh -efx

foreach file (raw/*.JPG)
  convert -resize 25%x25% $file $file:t
end
