Takes an input Tiff of a color negative, and subtracts the film backing color contamination per http://www.dpreview.com/forums/post/499854
Requires Image Magick with libtiff. Easy way to get that on OSX is with homebrew. Just run
brew install --with-libtiff imagemagick
with brew installed. Then you use the script like
./remove_color_cast filename.tif
Easy peasy. To do a batch of tifs you'd do something like the following.
mkdir out
for i in *.tif; do remove_color_cast $i && mv out.tif out/$i; done