ImageMagick
November 12th, 2006Batch desaturate on command line:
for img in `ls *.gif`;
do convert -fx G $img $img;
done;
Where G means grayscale (greyscale)
Batch desaturate on command line:
for img in `ls *.gif`;
do convert -fx G $img $img;
done;
Where G means grayscale (greyscale)
Last found on Tabadley some of this is what keeps me running a Windows partition.