mirror of
https://bitbucket.org/smil3y/ariya-icons.git
synced 2025-02-23 10:32:47 +00:00
11 lines
193 B
Bash
Executable file
11 lines
193 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for i in $(find -type f -name '*.png');do
|
|
pngquant "$i" -o "$i-optimized"
|
|
if [ -e "$i-optimized" ];then
|
|
rm -f "$i"
|
|
mv "$i-optimized" "$i"
|
|
fi
|
|
done
|