create color table from images

// description of your code here

for f in `ls *.gif`; do convert $f histogram:- | sed -n '/^Comment={/,/^}/{ s///; /^$/q; s/^ *//; p; }' | cat>>color_table.txt; done;

You need to create an account or log in to post comments to this site.