Thursday, April 21, 2005

A little script to resize all the images in a directory with bourne shell and ImageMagick.

yours,
sness.



#!/bin/sh

cd '/fun/pictures/2005-04 (Apr)-21'
for n in `ls`
do

echo ${n}
convert -size 1024x768 ${n} -resize 1024x768 +profile "*" /usr/src/sness/keukenhof/${n}

done