[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: bmp to jpg conversion



* aidanc (acoreilly@babbage.crisp.net) 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 | tom@linuxbrit.co.uk    |
  ^^-^^   `-------------------------------------------------------'



Reply to: