#!/bin/sh
# This Bourne shell script converts raw camera images to JPEG.
# Image comments are not preserved, although they could be.

# This script is in the public domain.  marko.makela (at) iki.fi, Jan 16, 2006

set -eu

exec dcraw -c "$IMG_IN" | cjpeg -outfile "$IMG_OUT"
