msfjarvis.dev/scripts/pngtowebp.sh

7 lines
167 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euxo pipefail
fd -tf png$ static/uploads -x convert {} -quality 100 -define webp:lossless=true {.}.webp
fd -tf png$ static/uploads -X rm -v