#! /bin/bash # [[thumbnails ]] Script to automatically create thumbnails # Usage: # Required: convert, imagemagick # # Authors: # FR, radeff@akademia.ch # History # 10 mai 2007, 20:25:45: FR, created ######### find . -name "*.jpg" | while read i do j=cat $i | sed 's|^..||g' #j="th_"$i echo $j convert -thumbnail 60 $i th_$i done