On Mon, March 6, 2006 1:56 pm, Rob Sharp wrote:
> On 3/6/06, Jeff Waugh <[EMAIL PROTECTED]> wrote:
>> <quote who="Voytek Eymont">

>>> for i in `ls *.jpg` ; do convert -resize 100 "$i" ./thumbs/"$i"; done

>> The ls is unnecessary and confuses things:

>> for i in *.jpg; do convert -resize 100 "$i" "thumbs/$i"; done


thanks, Jeff,

this one works good, even with strange file names

-- 
Voytek

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to