7 lines
261 B
Bash
Executable File
7 lines
261 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
set -eo pipefail
|
|
|
|
find ./ -type f -name '*.png' -not -path '*/.git/*' -exec sh -c 'cwebp $1 -o "${1%.png}.webp"' _ {} \;
|
|
find . -type f -not -path '*/.git/*' \( ! -iname ".gitignore" ! -iname "pre-commit" \) -exec sed -i -e 's/\.png/\.webp/g' {} \;
|