I’ve managed to reduce the size of my pics folder from 33M to 18M. All I did was strip all comments and thumbnails from the jpg files:
for f in _.jpg; do echo $f; jpegtran -optimize -trim -copy none -outfile _$f $f; mv $f $f; done __
Update: See 2005-07-10 Web for a little shell script.
#Software