Lance Levsen wrote:
> jimw wagner wrote:
>
>> Just a bit ago Lance sent me a nifty little command to do bulk resizing.
>>
>> JimW
>>
>
> Jim, can you send the command so we can see which it is? I sent a couple
> of shell scripts and a couple of straight Imagemagick commands so I'm
> not sure which you are referencing.
>
> Cheers,
> lance
>
Sorry, that's what comes of sending out these requests late at night;
you forget the important details.
Here it is:
for i in `ls *.gif | awk -F. '{print $1}'`; do \
convert -resize 50% ${i}.gif ${i}_resize.gif; \
rm -f ${i}.gif; \
done
JimW
Received on Sat Mar 17 18:10:38 2007
This archive was generated by hypermail 2.1.8 : Sat Mar 17 2007 - 18:10:50 CST