#!/bin/bash
# FILE : bbgrayscale
# Function: Converts all .jpg images in the directory to black and white
# Copyright (C) 2006-2009 Dave Crouse <
[email protected]>
# ------------------------------------------------------------------------ #
if [[ $1 = "--help" || $1 = "-h" || $1 = "help" ]]; then
echo " Function: Converts all .jpg images in the directory to black and white";
echo " Usage: $0";
echo " Requires: Imagemagick";
echo " ";
echo " Comments/Suggestions/Bugfixes to <
[email protected]>";
echo " USA Linux Users Group - http://usalug.org";
echo " ";
exit 0
fi
if [[ -z $( type -p convert ) ]]; then echo -e "ImageMagick -- NOT INSTALLED !";exit ;fi
export IFS=$'\n';
for i in $(find . -maxdepth 1 -type f -iname "*.jpg");
do
echo "Converting ${i:2} to Black and White"; convert -colorspace gray ${i:2} new_${i:2}; mv new_${i:2} ${i:2}
done
exit 0