mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-15 20:06:24 +00:00
12 lines
253 B
Bash
12 lines
253 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir webp 2>/dev/null
|
||
|
|
||
|
for f in *.{png,jpg}
|
||
|
do
|
||
|
echo ""
|
||
|
title=$(echo $f | sed 's/\.[^.]*$//')
|
||
|
echo "Processing $f..."
|
||
|
cwebp "$f" -q 30 -resize 225 225 -o webp/"$(echo $f | rev | cut -d"." -f2- | rev).webp" < /dev/null
|
||
|
echo ""
|
||
|
done
|