#!/bin/bash # part of the suckpr0n packagemww 19980417 dir=$1 if [ -z "$dir" ]; then echo "usage: suckpr0n-makethumbs subdir" exit 1 fi cd $dir echo -n "converting ... " for i in *-m.jpg; do echo -n "$i " djpeg $i | pnmscale -ysize 90 | cjpeg > $i-small done rename s/-m\.\(...\)-small/-s.\$1/ *-small cd .. chmod a+rX $dir pcdindex $dir rm $dir/*.html~