* aidanc ([EMAIL PROTECTED]) wrote: > I'm not sure where to start, but I need to convert about 280 .bmp files > to .jpg format. Is there a utility or script that would convert them all > at once? > TIA > Aidan
apt-get install imagemagick for file in *.bmp; do convert $file `echo $file | sed -e 's/\.bmp/\.jpg'`; done Tom. -- .^. .-------------------------------------------------------. /V\ | Tom Gilbert, London, England | http://linuxbrit.co.uk | /( )\ | Open Source hacker, advocate | [EMAIL PROTECTED] | ^^-^^ `-------------------------------------------------------'