see the convert utility from the ImageMagick set of programs.
if its installed you could probably just do

    for f in *.tif;do
        g=`echo $f | sed -e 's/.tif$/.jpg/'`
        convert  $f $g
    done



BB

on Tue, Oct 28, 2003 at 02:46:27PM +1100, Lyle Chapman <[EMAIL PROTECTED]> wrote:
> Does anyone know of a script that will convert a directory of *.tif to 
> *.jpg.
> 
> cheers,
> 
> Lyle Chapman
> 
> Pre-Press Supervisor
> Torch Publishing Co.
> 47 Allingham Street, Condell Park 2200, NSW, Australia
> 612 9795 0000
> http://www.torchpublishing.com.au
> -- 
> SLUG - Sydney Linux User's Group - http://slug.org.au/
> More Info: http://lists.slug.org.au/listinfo/slug
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to