18 lines
310 B
Bash
Executable File
18 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set +x
|
|
|
|
for FILE in img/bench/webp-src/*.jpg; do
|
|
OUT="${FILE%.*}.webp"
|
|
OUT2X="${FILE%.*}@2x.webp"
|
|
if [ ! -f ../$OUT ]; then
|
|
cwebp -mt -resize 160 0 -q 40 $FILE -o $OUT
|
|
fi
|
|
if [ ! -f ../$OUT2X ]; then
|
|
cwebp -mt -q 40 $FILE -o $OUT2X
|
|
fi
|
|
done
|
|
|
|
mv img/bench/webp-src/*.webp img/bench/
|