In a message dated: Fri, 17 May 2002 07:55:40 PDT
Ken Ambrose said:

>for i in *
>do
>mogrify -geometry 30%x30% $i
>echo "Done with $i"
>done
>
>Unfortunately, it takes each seperate "word" as a different paramater.  I
>-know- I've done this before, but I just can't remember how.  Suggestions?

Place the $i in "":

for i in *
do
mogrify -geometry 30%x30% "$i"
echo "Done with $i"
done


Congrats BTW!
-- 

Seeya,
Paul



*****************************************************************
To unsubscribe from this list, send mail to [EMAIL PROTECTED]
with the text 'unsubscribe gnhlug' in the message body.
*****************************************************************

Reply via email to