yacy_search_server/addon/thumbnail.sh
allo fbe7815eec demo thumbnailer
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3246 6c8d7289-2bf4-0310-a012-ef5d649a1542
2007-01-18 15:23:07 +00:00

11 lines
197 B
Bash
Executable File

#!/bin/sh
cd /tmp
FILE=`tempfile`.html
wget "$1" -O $FILE -k
convert $FILE -resize 168x128 "$2"
if [ -e "${2%.png}"-0.png ];then
mv "${2%.png}"-0.png "${2}"
rm "${2%.png}"-[0-9]*.png
fi
rm $FILE