mirror of
https://github.com/loviuz/loviuz-website.git
synced 2024-12-22 13:34:51 +01:00
5 lines
189 B
Bash
Executable File
5 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find ./ -type f -name '*.jpg' -exec sh -c 'cwebp -q 80 "$1" -o "${1%.jpg}.webp"' _ {} \;
|
|
find ./ -type f -name '*.png' -exec sh -c 'cwebp -q 80 "$1" -o "${1%.png}.webp"' _ {} \;
|