w3ps1/static/topics/convert.sh
2023-04-25 07:45:35 +02:00

5 lines
79 B
Bash
Executable file

#!/bin/bash
for file in *
do
cwebp -q 80 "$file" -o "${file%.png}.webp"
done