mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-02-02 06:38:42 -05:00
8d1b66accc
*) replaced all shebangs with more universal versions
11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/usr/bin/env 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
|